-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest-v2.json
48 lines (48 loc) · 1.7 KB
/
manifest-v2.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
{
"manifest_version": 2,
"name": "Unedit and Undelete for Reddit",
"description": "Show original comments and posts from before they were edited or removed",
"version": "3.17.4",
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"*://*.reddit.com/",
"*://*.reddit.com/me/f/*",
"*://*.reddit.com/message/*",
"*://*.reddit.com/r/*",
"*://*.reddit.com/user/*"
],
"exclude_matches": [
"*://*.reddit.com/*/about/banned*",
"*://*.reddit.com/*/about/contributors*",
"*://*.reddit.com/*/about/edit*",
"*://*.reddit.com/*/about/flair*",
"*://*.reddit.com/*/about/log*",
"*://*.reddit.com/*/about/moderators*",
"*://*.reddit.com/*/about/muted*",
"*://*.reddit.com/*/about/rules*",
"*://*.reddit.com/*/about/stylesheet*",
"*://*.reddit.com/*/about/traffic*",
"*://*.reddit.com/*/wiki/*",
"*://mod.reddit.com/*"
],
"js": ["vendor/showdown.min.js", "script.js"]
}
],
"web_accessible_resources": ["vendor/showdown.min.js.map"],
"page_action": {
"default_icon": "images/logo64.png",
"default_title": "Unedit and Undelete for Reddit"
},
"icons": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo48.png",
"128": "images/logo128.png"
},
"permissions": [
"*://*.pushshift.io/*",
"storage"
]
}