After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 8.0 KiB |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 371 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 8.3 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 840 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 348 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 964 B |
After Width: | Height: | Size: 6.5 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1022 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 507 B |
After Width: | Height: | Size: 7.9 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 778 KiB |
After Width: | Height: | Size: 935 B |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 756 B |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 717 B |
After Width: | Height: | Size: 749 B |
After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 740 B |
After Width: | Height: | Size: 789 B |
@ -0,0 +1,79 @@
|
|||||||
|
{
|
||||||
|
"name": "Wappalyzer",
|
||||||
|
"short_name": "Wappalyzer",
|
||||||
|
"author": "Wappalyzer",
|
||||||
|
"homepage_url": "https://www.wappalyzer.com/",
|
||||||
|
"description": "Identify web technologies",
|
||||||
|
"version": "6.5.20",
|
||||||
|
"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",
|
||||||
|
"64": "images/icon_64.png",
|
||||||
|
"128": "images/icon_128.png",
|
||||||
|
"256": "images/icon_256.png",
|
||||||
|
"512": "images/icon_512.png",
|
||||||
|
"1024": "images/icon_1024.png"
|
||||||
|
},
|
||||||
|
"browser_action": {
|
||||||
|
"default_icon": {
|
||||||
|
"16": "images/safari.svg",
|
||||||
|
"19": "images/safari.svg",
|
||||||
|
"32": "images/safari.svg",
|
||||||
|
"38": "images/safari.svg",
|
||||||
|
"64": "images/safari.svg",
|
||||||
|
"128": "images/safari.svg",
|
||||||
|
"256": "images/safari.svg",
|
||||||
|
"512": "images/safari.svg",
|
||||||
|
"1024": "images/safari.svg"
|
||||||
|
},
|
||||||
|
"default_title": "Wappalyzer",
|
||||||
|
"default_popup": "html/popup.html"
|
||||||
|
},
|
||||||
|
"background": {
|
||||||
|
"page": "html/background.html"
|
||||||
|
},
|
||||||
|
"content_scripts": [
|
||||||
|
{
|
||||||
|
"matches": [
|
||||||
|
"http://*/*",
|
||||||
|
"https://*/*"
|
||||||
|
],
|
||||||
|
"js": [
|
||||||
|
"js/content.js"
|
||||||
|
],
|
||||||
|
"run_at": "document_idle"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"matches": [
|
||||||
|
"http://*/*",
|
||||||
|
"https://*/*"
|
||||||
|
],
|
||||||
|
"js": [
|
||||||
|
"js/lib/iframe.js"
|
||||||
|
],
|
||||||
|
"run_at": "document_start",
|
||||||
|
"all_frames": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"web_accessible_resources": [
|
||||||
|
"js/inject.js"
|
||||||
|
],
|
||||||
|
"options_ui": {
|
||||||
|
"page": "html/options.html",
|
||||||
|
"open_in_tab": false
|
||||||
|
},
|
||||||
|
"permissions": [
|
||||||
|
"cookies",
|
||||||
|
"storage",
|
||||||
|
"tabs",
|
||||||
|
"webRequest",
|
||||||
|
"webNavigation",
|
||||||
|
"http://*/*",
|
||||||
|
"https://*/*"
|
||||||
|
],
|
||||||
|
"content_security_policy": "script-src 'self'; object-src 'self'"
|
||||||
|
}
|