Merge pull request #1448 from DaAwesomeP/master
Use different WebExtension manifests per browsermain
commit
793bb67688
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,62 @@
|
||||
{ "name": "Wappalyzer",
|
||||
"short_name": "Wappalyzer",
|
||||
"author": "AliasIO",
|
||||
"homepage_url": "https://wappalyzer.com/",
|
||||
"description": "Identify web technologies",
|
||||
"version": "3",
|
||||
"default_locale": "en",
|
||||
"manifest_version": 2,
|
||||
"icons": {
|
||||
"16": "images/icon_16.png",
|
||||
"19": "images/icon_19.png",
|
||||
"32": "images/icon_32.png",
|
||||
"38": "images/icon_38.png",
|
||||
"128": "images/icon_128.png"
|
||||
},
|
||||
"page_action": {
|
||||
"default_icon": {
|
||||
"16": "images/icon_16.png",
|
||||
"19": "images/icon_19.png",
|
||||
"32": "images/icon_32.png",
|
||||
"38": "images/icon_38.png",
|
||||
"128": "images/icon_128.png"
|
||||
},
|
||||
"default_title": "Wappalyzer",
|
||||
"default_popup": "popup.html"
|
||||
},
|
||||
"background": {
|
||||
"page": "background.html",
|
||||
"persistent": true
|
||||
},
|
||||
"content_scripts": [ {
|
||||
"matches": [ "http://*/*", "https://*/*" ],
|
||||
"js": [
|
||||
"js/browser-polyfill.js",
|
||||
"js/content.js"
|
||||
],
|
||||
"run_at": "document_idle"
|
||||
}, {
|
||||
"matches": [ "http://*/*", "https://*/*" ],
|
||||
"js": [
|
||||
"js/browser-polyfill.js",
|
||||
"js/iframe.js"
|
||||
],
|
||||
"run_at": "document_start",
|
||||
"all_frames": true
|
||||
} ],
|
||||
"web_accessible_resources": [
|
||||
"js/inject.js"
|
||||
],
|
||||
"options_ui": {
|
||||
"page": "options.html",
|
||||
"open_in_tab": false
|
||||
},
|
||||
"permissions": [
|
||||
"tabs",
|
||||
"webRequest",
|
||||
"webNavigation",
|
||||
"http://*/*",
|
||||
"https://*/*"
|
||||
],
|
||||
"content_security_policy": "script-src 'self'; object-src 'self'"
|
||||
}
|
@ -0,0 +1,59 @@
|
||||
{ "name": "Wappalyzer",
|
||||
"short_name": "Wappalyzer",
|
||||
"author": "AliasIO",
|
||||
"homepage_url": "https://wappalyzer.com/",
|
||||
"description": "Identify web technologies",
|
||||
"version": "3",
|
||||
"default_locale": "en",
|
||||
"manifest_version": 2,
|
||||
"icons": {
|
||||
"16": "images/icon_16.png",
|
||||
"19": "images/icon_19.png",
|
||||
"32": "images/icon_32.png",
|
||||
"38": "images/icon_38.png",
|
||||
"128": "images/icon_128.png"
|
||||
},
|
||||
"page_action": {
|
||||
"default_icon": {
|
||||
"16": "images/icon_16.png",
|
||||
"19": "images/icon_19.png",
|
||||
"32": "images/icon_32.png",
|
||||
"38": "images/icon_38.png",
|
||||
"128": "images/icon_128.png"
|
||||
},
|
||||
"default_title": "Wappalyzer",
|
||||
"default_popup": "popup.html"
|
||||
},
|
||||
"background": {
|
||||
"page": "background.html",
|
||||
"persistent": true
|
||||
},
|
||||
"content_scripts": [ {
|
||||
"matches": [ "http://*/*", "https://*/*" ],
|
||||
"js": [
|
||||
"js/browser-polyfill.js",
|
||||
"js/content.js"
|
||||
],
|
||||
"run_at": "document_idle"
|
||||
}, {
|
||||
"matches": [ "http://*/*", "https://*/*" ],
|
||||
"js": [
|
||||
"js/browser-polyfill.js",
|
||||
"js/iframe.js"
|
||||
],
|
||||
"run_at": "document_start",
|
||||
"all_frames": true
|
||||
} ],
|
||||
"web_accessible_resources": [
|
||||
"js/inject.js"
|
||||
],
|
||||
"options_page": "options.html",
|
||||
"permissions": [
|
||||
"tabs",
|
||||
"webRequest",
|
||||
"webNavigation",
|
||||
"http://*/*",
|
||||
"https://*/*"
|
||||
],
|
||||
"content_security_policy": "script-src 'self'; object-src 'self'"
|
||||
}
|
@ -1,21 +1,26 @@
|
||||
{ "name": "Wappalyzer",
|
||||
"short_name": "Wappalyzer",
|
||||
"author": "AliasIO",
|
||||
"homepage_url": "https://wappalyzer.com/",
|
||||
"description": "Identify web technologies",
|
||||
"version": "3",
|
||||
"default_locale": "en",
|
||||
"manifest_version": 2,
|
||||
"icons": {
|
||||
"16": "images/icon_16.png",
|
||||
"32": "images/icon_32.png",
|
||||
"128": "images/icon_128.png"
|
||||
},
|
||||
"applications": {
|
||||
"gecko": {
|
||||
"id": "wappalyzer@crunchlabz.com",
|
||||
"strict_min_version": "52.0"
|
||||
}
|
||||
},
|
||||
"icon": "images/logo.svg",
|
||||
"page_action": {
|
||||
"default_icon": "images/icon_32.png",
|
||||
"default_icon": "images/logo.svg",
|
||||
"default_title": "Wappalyzer",
|
||||
"default_popup": "popup.html"
|
||||
},
|
||||
"background": {
|
||||
"page": "background.html"
|
||||
"page": "background.html",
|
||||
"persistent": true
|
||||
},
|
||||
"content_scripts": [ {
|
||||
"matches": [ "http://*/*", "https://*/*" ],
|
Loading…
Reference in new issue