Sniff web framework and javascript libraries run on browsing website.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "__MSG_extName__",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"short_name": "__MSG_extShortName__",
"manifest_version": 2,
"version": "2.9.1",
"description": "__MSG_extDesc__",
"default_locale": "en",
"background": {
"page": "background.html"
},
"options_page": "option.html",
"page_action": {
"default_icon": "icon.png",
"default_title": "__MSG_pageActionTitle__",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"js/main.js"
]
}
],
"permissions": [
"tabs",
"webRequest",
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
"js/detector.js"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}