-
Notifications
You must be signed in to change notification settings - Fork 29
/
manifest.json
36 lines (36 loc) · 1.21 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "WPintel - WordPress Vulnerability Scanner",
"author": "Tuhinshubhra",
"version": "1.9",
"description": "WordPress Vulnerability Scanner - Scan for vulnerabilities, version, themes, plugins and much more!",
"manifest_version": 2,
"icons" : {
"16": "images/logo_16.png",
"32": "images/logo_32.png",
"48": "images/logo_48.png",
"128": "images/logo_128.png"
},
"background": {
"page": "html/background.html"
},
"page_action": {
"default_popup": "html/popup.html",
"default_title": "WPintel - WordPress Scanner",
"default_icon": {
"16": "images/logo_16.png",
"32": "images/logo_32.png",
"48": "images/logo_48.png",
"128": "images/logo_128.png"
}
},
"permissions": [
"tabs", "activeTab", "https://*/*", "http://*/*", "webRequest"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"content_scripts": [{
"matches": ["*://*/*"],
"js": ["js/content.js", "js/include.js"],
"run_at": "document_start"
}],
"web_accessible_resources": ["resources/Quicksand-Regular.ttf"]
}