Inspect and view changes in MS Doc Link 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "1.3.1",
"icons": {
"16": "icons/Icon16.png",
"32": "icons/Icon32.png",
"48": "icons/Icon48.png",
"64": "icons/Icon64.png",
"128": "icons/Icon128.png"
},
"permissions": [
"<all_urls>",
"*://*/*",
"contextMenus",
"activeTab",
"tabs",
"background",
"unlimitedStorage",
"storage"
],
"browser_action": {
"default_popup": "pages/popup.html"
},
"background": {
"persistent": false,
"page": "pages/background.html"
},
"options_page": "pages/options.html",
"commands": {
"openLinkHistory": {
"suggested_key": {
"default": "Ctrl+Shift+H",
"windows": "Ctrl+Shift+H",
"mac": "Ctrl+Shift+H"
},
"description": "Opens the favorites/history page"
}
},
"content_scripts": [
{
"js": [
"js/manifest.js",
"js/vendor.js",
"js/content.js"
],
"css": [
"css/content-frame.css",
"css/content.css"
],
"run_at": "document_end",
"matches": [
"<all_urls>"
],
"all_frames": true
}
],
"default_locale": "en",
"manifest_version": 2,
"content_security_policy": "script-src 'self'; object-src 'self'",
"web_accessible_resources": [
"js/content.js",
"css/content.css",
"fonts/element-icons.ttf"
]
}