-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
52 lines (44 loc) · 1.17 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"manifest_version": 2,
"name": "spoilergon",
"short_name": "spoilergon",
"version": "2.0.0",
"description": "Spoilergon : A spoiler blocker for The Verge, Polygon and Vox",
"browser_action": {
"default_icon": "assets/icons/icon.png",
"default_popup": "popup.html",
"default_title": "spoilergon"
},
"icons": {
"32": "assets/icons/icon.png",
"128": "assets/icons/icon.png"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"*://www.polygon.com/*"
],
"js": ["scripts/jquery.min.js", "scripts/master.js", "scripts/polygon_filter.js"]
},
{
"run_at": "document_end",
"matches": [
"*://www.theverge.com/*"
],
"js": ["scripts/jquery.min.js", "scripts/master.js", "scripts/verge_filter.js"]
},
{
"run_at": "document_end",
"matches": [
"*://www.vox.com/*"
],
"js": ["scripts/jquery.min.js", "scripts/master.js", "scripts/vox_filter.js"]
}
],
"permissions": [
"activeTab",
"storage"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}