Inspect and view changes in Link Peek source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Link Peek",
"description": "Shows a summary of a link / URL",
"version": "0.0.0.4",
"manifest_version": 2,
"permissions": [
"storage"
],
"web_accessible_resources": [
"url_script.js",
"images/loading.png",
"images/cancel.png",
"images/icon-green.png",
"images/icon-red.png"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"browser_action": {
"default_icon": {
"16": "images/icon16.png",
"24": "images/icon24.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"64": "images/icon64.png",
"128": "images/icon128.png"
},
"default_popup": "options.html",
"default_title": "Options"
},
"options_page": "options.html",
"default_locale": "en",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}