-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
72 lines (72 loc) · 1.73 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"manifest_version":3,
"name":"Detrumpify",
"short_name":"Detrumpify",
"description":"Replaces references to Donald Trump with more accurate descriptions.",
"author":"Dave Jacobowitz",
"options_ui":{
"page":"options.html"
},
"version":"1.3.0",
"permissions":[
"storage",
"tabs"
],
"host_permissions": [
"http://toolsofourtools.org/",
"https://toolsofourtools.org/",
"http://localhost/",
"http://localhost:8000/",
"https://localhost/",
"https://localhost:8000/",
"https://dropbox.com/",
"https://www.dropbox.com/",
"https://dl.dropboxusercontent.com/"
],
"action":{
"default_icon":{
"128":"icons/dt-128.png"
},
"default_title":"Configure Detrumpify",
"default_popup":"options.html"
},
"content_scripts":[
{
"matches":[
"http://*/*",
"https://*/*"
],
"js":[
"defaults.js",
"shared.js",
"picdb.js",
"timers.js",
"image_changer.js",
"text_changer.js",
"ttr.js",
"breaking.js",
"top.js"
],
"run_at":"document_end"
}
],
"icons":{
"128":"icons/dt-128.png",
"200":"icons/dt-200.png",
"400":"icons/dt-400.png"
},
"applications":{
"gecko":{
"id":"@detrumpify"
}
},
"web_accessible_resources": [{
"resources": [
"empty_image.png"
],
"matches":[
"http://*/*",
"https://*/*"
]
}]
}