forked from qsniyg/maxurl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
75 lines (63 loc) · 1.28 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
73
74
75
{
"manifest_version": 2,
"name": "Image Max URL",
"author": "qsniyg",
"version": "0.13.18",
"description": "Finds larger or original versions of images",
"background": {
"scripts": [
"extension/background.js",
"userscript.user.js"
],
"persistent": true
},
"applications": {
"gecko": {
"id": "maxurl@qsniyg"
}
},
"browser_specific_settings": {
"gecko": {
"id": "maxurl@qsniyg"
}
},
"content_scripts": [
{
"all_frames": true,
"matches": ["<all_urls>"],
"js": ["userscript.user.js"]
}
],
"icons": {
"48": "resources/logo_48.png",
"96": "resources/logo_96.png"
},
"browser_action": {
"browser_style": false,
"default_popup": "extension/popup.html",
"default_title": "Image Max URL",
"default_icon": {
"40": "resources/logo_40.png",
"48": "resources/logo_48.png",
"96": "resources/logo_96.png"
}
},
"options_ui": {
"page": "extension/options.html",
"open_in_tab": true
},
"options_page": "extension/options.html",
"permissions": [
"storage",
"cookies",
"webRequest",
"webRequestBlocking",
"contextMenus",
"<all_urls>"
],
"optional_permissions": [
"history",
"notifications",
"downloads"
]
}