diff --git a/bin/wappalyzer-build b/bin/wappalyzer-build index 6a18d6bb6..44cb73a39 100755 --- a/bin/wappalyzer-build +++ b/bin/wappalyzer-build @@ -67,11 +67,21 @@ pushd $WAPPALYZER_ROOT/src/drivers/chrome > /dev/null zip -qr $WAPPALYZER_ROOT/build/wappalyzer_chrome.zip . # Google Chrome -echo "Building WebExtension driver..." +echo "Building WebExtension drivers..." pushd $WAPPALYZER_ROOT/src/drivers/webextension > /dev/null -zip -qr $WAPPALYZER_ROOT/build/wappalyzer_webextension.zip . +zip -qr $WAPPALYZER_ROOT/build/wappalyzer_webextension.firefox.zip . -x manifest.chrome-opera.json manifest.edge.json + +printf "@ manifest.firefox.json\n@=manifest.json\n" | zipnote -w $WAPPALYZER_ROOT/build/wappalyzer_webextension.firefox.zip + +zip -qr $WAPPALYZER_ROOT/build/wappalyzer_webextension.chrome-opera.zip . -x manifest.firefox.json manifest.edge.json + +printf "@ manifest.chrome-opera.json\n@=manifest.json\n" | zipnote -w $WAPPALYZER_ROOT/build/wappalyzer_webextension.chrome-opera.zip + +zip -qr $WAPPALYZER_ROOT/build/wappalyzer_webextension.edge.zip . -x manifest.chrome-opera.json manifest.firefox.json + +printf "@ manifest.edge.json\n@=manifest.json\n" | zipnote -w $WAPPALYZER_ROOT/build/wappalyzer_webextension.edge.zip popd > /dev/null diff --git a/src/drivers/webextension/images/logo.svg b/src/drivers/webextension/images/logo.svg new file mode 100644 index 000000000..dfcc9511e --- /dev/null +++ b/src/drivers/webextension/images/logo.svg @@ -0,0 +1,17 @@ + + \ No newline at end of file diff --git a/src/drivers/webextension/manifest.chrome-opera.json b/src/drivers/webextension/manifest.chrome-opera.json new file mode 100644 index 000000000..39bcb08b2 --- /dev/null +++ b/src/drivers/webextension/manifest.chrome-opera.json @@ -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'" +} diff --git a/src/drivers/webextension/manifest.edge.json b/src/drivers/webextension/manifest.edge.json new file mode 100644 index 000000000..1ee3c20ab --- /dev/null +++ b/src/drivers/webextension/manifest.edge.json @@ -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'" +} diff --git a/src/drivers/webextension/manifest.json b/src/drivers/webextension/manifest.firefox.json similarity index 76% rename from src/drivers/webextension/manifest.json rename to src/drivers/webextension/manifest.firefox.json index 5e57b50ae..5a1d501a3 100644 --- a/src/drivers/webextension/manifest.json +++ b/src/drivers/webextension/manifest.firefox.json @@ -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://*/*" ], diff --git a/src/drivers/webextension/options.html b/src/drivers/webextension/options.html index bd7f606d0..4b6817ce7 100644 --- a/src/drivers/webextension/options.html +++ b/src/drivers/webextension/options.html @@ -6,7 +6,7 @@