-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
29 lines (29 loc) · 933 Bytes
/
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
{
"name": "Reddit Pro Tools",
"short_name": "RddtProTools",
"description" : "Reddit User Analyzer and More",
"version": "1.34.5",
"author": "impossible",
"browser_action": {
"default_icon": "images/rpt-16.png"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"manifest_version": 2,
"content_scripts": [{
"run_at" : "document_idle",
"css": ["styles.css"],
"js": ["jquery-3.4.1.min.js", "chrome-extension-async.js", "analytics.js", "rpt.js", "settings.js", "users.js", "db.js", "domains.js"],
"matches": ["https://*.reddit.com/*"]
}],
"permissions": ["storage"],
"icons": {
"16": "images/rpt-16.png",
"48": "images/rpt-48.png",
"128": "images/rpt-128.png"
},
"web_accessible_resources": ["images/", "images/removeddit.png", "images/transparent-1x1.png"],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}