-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (30 loc) · 752 Bytes
/
manifest.json
File metadata and controls
30 lines (30 loc) · 752 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
{
"background": {
"scripts": [ "popup.js" ]
},
"browser_action": {
"default_icon": {
"16": "icon16.png",
"24": "icon24.png",
"32": "icon32.png"
},
"default_title": "imgur to 0imgur"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content.js"
],
"run_at": "document_idle",
"all_frames": true
}
],
"description": "This extension redirects all imgur URLs to 0imgur, so you can access it from restricted countries and / or ISPs. Also works with embedded images on other web sites.",
"manifest_version": 2,
"name": "Imgur to 0Imgur",
"permissions": [ "tabs" ],
"version": "1"
}