-
Notifications
You must be signed in to change notification settings - Fork 77
/
manifest.json
66 lines (66 loc) · 2.4 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
{
"author": "NeverDecaf",
"manifest_version": 3,
"name": "__MSG_extension_Name__",
"description": "__MSG_extension_Description__",
"default_locale": "en",
"version": "1.5.4.3",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqF/d41Q7agjkUzYq8ZGbQr8XW8mmEIMXOnR1uCTnYLL+Dm9Z+LO50xZukOISNy6zFxpI8ts/OGLsm+I2x9+UprUU4/EVdmxuwegFE6NBoEhHoRNYY0gbXZkaU8YY/XwzjVY/k18DDhl5NYPEnF6uq4Oyidg+xtd3W4+iGYczuOLER1Tp5y614zOTphcvFYhvUkCijQ6HT1TtRq/34SlFoRQqo4SFiLriK451xWIcfwiMLIekWrdoQa1v8dqIlMA3r6CKc0QykJpSYbiyormWiZ0hl2HLpkZ85mD9V0eDQ5RCtb6vkybK7INcq4yKQV4YkXhr9NpX9U4re4dlFQjEJQIDAQAB",
"permissions": [
"management",
"storage",
"alarms",
"contextMenus",
"downloads"
],
"host_permissions": ["https://clients2.google.com/service/*"],
"optional_host_permissions": ["<all_urls>"],
"action": {
"default_icon": {
"16": "assets/icon/icon_16.png",
"24": "assets/icon/icon_24.png"
},
"default_title": "__MSG_extension_Name__",
"default_popup": "popup.html#is_cws_popup"
},
"content_scripts": [
{
"matches": [
"https://chrome.google.com/webstore*",
"https://chromewebstore.google.com/*",
"https://addons.opera.com/*extensions/details/*",
"https://microsoftedge.microsoft.com/addons/*"
],
"js": ["scripts/util.js", "scripts/inject.js"],
"run_at": "document_end"
}
],
"background": {
"service_worker": "scripts/background.js"
},
"update_url": "https://raw.githubusercontent.com/NeverDecaf/chromium-web-store/master/updates.xml",
"icons": {
"16": "assets/icon/icon_16.png",
"24": "assets/icon/icon_24.png",
"32": "assets/icon/icon_32.png",
"48": "assets/icon/icon_48.png",
"64": "assets/icon/icon_64.png",
"128": "assets/icon/icon_128.png"
},
"homepage_url": "https://github.com/NeverDecaf/chromium-web-store",
"options_ui": {
"page": "options.html"
},
"storage": {
"managed_schema": "managed_storage.json"
},
"web_accessible_resources": [
{
"resources": ["scripts/chromeApi.js"],
"matches": ["https://chromewebstore.google.com/*"]
}
],
"externally_connectable": {
"matches": ["https://chromewebstore.google.com/*"]
}
}