-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (31 loc) · 737 Bytes
/
Copy pathmanifest.json
File metadata and controls
32 lines (31 loc) · 737 Bytes
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
{
"manifest_version": 2,
"name": "Load Reddit Images Directly",
"version": "1.9",
"description": "Loads reddit images directly instead of referring to the HTML page containing the image.",
"permissions": [
"activeTab",
"storage",
"webRequest",
"webRequestBlocking",
"*://i.redd.it/*",
"*://external-preview.redd.it/*",
"*://preview.redd.it/*",
"*://cf.preview.redd.it/*",
"*://www.reddit.com/*"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["*://www.reddit.com/r/*"],
"js": ["content.js"],
"run_at": "document_end"
}
],
"browser_action": {
"default_popup": "popup.html"
}
}