Link Seer saves you tabs and time by previewing every link you hover. It's a browser add-on that shows you a preview of any link as you hover over it. Stop wasting time switching between tabs and learn a more efficient method of browsing the web.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"version": "1.0.2",
"name": "__MSG_extensionName__",
"short_name": "__MSG_extensionShortName__",
"description": "__MSG_extensionDescription__",
"author": "HailBytes",
"default_locale": "en",
"permissions": [
"https://*/*",
"http://*/*",
"file:///*",
"tabs",
"activeTab",
"storage",
"unlimitedStorage"
],
"icons": {
"128": "/images/icon128.png"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"file:///*/*"
],
"js": [
"js/templates/wikipedia.js",
"js/templates/base.js",
"js/templates/reddit.js",
"js/templates/twitter.js",
"js/templates/youtube.js",
"js/templates/stackexchange.js",
"js/templates/soundcloud.js",
"js/templates/github.js",
"js/core.js"
],
"css": [
"css/base.css",
"css/templates/wikipedia.css",
"css/templates/reddit.css",
"css/templates/twitter.css",
"css/templates/youtube.css",
"css/templates/stackexchange.css",
"css/templates/soundcloud.css",
"css/templates/github.css"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"js/background/auxiliary.js",
"js/ExtPay.js"
]
},
"browser_action": {
"default_title": "Link Seer",
"default_popup": "html/popup.html"
},
"web_accessible_resources": [
"images/upvote.png",
"images/comment.png",
"images/reddit.png"
],
"browser_specific_settings": {
"gecko": {
"id": "{70f75b4a-68f1-49ac-9188-13974aa62d8f}"
}
}
}