-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
92 lines (92 loc) · 2.18 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "__MSG_manifest_appName__",
"short_name": "__MSG_manifest_shortName__",
"version": "1.6.1.2794",
"description": "__MSG_manifest_appDescription__",
"manifest_version": 2,
"default_locale": "zh_CN",
"homepage_url": "https://github.com/pt-plugins/PT-Plugin-Plus",
"browser_action": {
"default_icon": "assets/icon-19.png",
"default_title": "__MSG_manifest_appName__"
},
"permissions": [
"activeTab",
"clipboardRead",
"clipboardWrite",
"storage",
"contextMenus",
"notifications",
"http://*/*",
"https://*/*",
"unlimitedStorage",
"webRequest",
"webRequestBlocking"
],
"optional_permissions": [
"downloads",
"cookies",
"alarms"
],
"icons": {
"16": "assets/icon.png",
"19": "assets/icon-19.png",
"64": "assets/icon-64.png",
"128": "assets/icon-128.png"
},
"options_ui": {
"page": "index.html",
"open_in_tab": true
},
"background": {
"scripts": [
"libs/types.expand.js",
"libs/jquery/jquery-3.3.1.min.js",
"libs/Base64.js",
"background/index.js"
]
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"exclude_matches": [
"https://fonts.google.com/*"
],
"css": [
"assets/base.css",
"libs/materialIcons/content_style.css",
"libs/notice/noticejs.css",
"libs/basicContext/basicContext.min.css",
"libs/basicContext/themes/default.min.css"
],
"js": [
"libs/types.expand.js",
"libs/jquery/jquery-3.3.1.min.js",
"libs/Base64.js",
"libs/notice/notice.js",
"libs/basicContext/basicContext.min.js",
"libs/drag.js",
"contentScripts/index.js"
]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": [
"libs/materialIcons/*.woff2",
"assets/*",
"resource/*"
],
"omnibox": {
"keyword": "pt"
},
"minimum_chrome_version": "80",
"browser_specific_settings": {
"gecko": {
"update_url": "https://pt-plugins.github.io/PT-Plugin-Plus/update/firefox.json",
"strict_min_version": "80.0"
}
}
}