You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
618 B
28 lines
618 B
{ "update_url": "http://clients2.google.com/service/update2/crx",
|
|
"name": "Wappalyzer (beta)",
|
|
"icons": {
|
|
"32": "images/icon_32.png",
|
|
"128": "images/icon_128.png"
|
|
},
|
|
"version": "0.9",
|
|
"description": "Identifies software on the web",
|
|
"browser_action": {
|
|
"default_icon": "images/icon_32.png",
|
|
"default_title": "Wappalyzer - click for details",
|
|
"popup": "popup.html"
|
|
},
|
|
"background_page": "bg.html",
|
|
"content_scripts": [{
|
|
"matches": [ "http://*/*", "https://*/*" ],
|
|
"js": [
|
|
"js/content.js"
|
|
],
|
|
"run_at": "document_idle"
|
|
}],
|
|
"permissions": [
|
|
"tabs",
|
|
"http://*/*",
|
|
"https://*/*"
|
|
]
|
|
}
|