-
Notifications
You must be signed in to change notification settings - Fork 73
/
manifest.json
78 lines (66 loc) · 1.79 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
76
77
78
{
"manifest_version": 2,
"name": "Image Max URL",
"author": "qsniyg",
"version": "2024.8.0",
"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",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtWO5xT8unDmhWBJpTF1KN2loSBtp7RHE19cVT46zxBcvscy2QLlZAjBQ/0m5paqVXO4ln2KzgH5unyNNZowbT7P9+DukwymjeXoSnaE9+ooKBmxz5Wr6j+x43hWxPAf8PcgnIgY99DgPXV7ZlPzHOGIe9dRarrGNRsbQyoI+Bj4gpu5yIgvg0jYHKAUCpAAwIA9Vhg92+vD7rCUEMwEo+DQp7rOA4RkFQjp83xMdqZwOYzX8+0FDy2TpuGKlkW+N4DvqbcJIi8U/CZhdgSM/KcRKaEc6cGI7Zv6GcrXxPsLqYWj/4e7IpHydLshvtQxcfQ7BV2IWIx/41NtuAIBzNQIDAQAB",
"update_url": "https://raw.githubusercontent.com/qsniyg/maxurl/master/extension/updates.xml",
"permissions": [
"storage",
"cookies",
"webRequest",
"webRequestBlocking",
"contextMenus",
"<all_urls>"
],
"optional_permissions": [
"history",
"notifications",
"downloads",
"clipboardWrite"
]
}