forked from ellipse42/weread_helper_extension
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
executable file
·36 lines (36 loc) · 1008 Bytes
/
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
{
"name": "微信读书助手 - by moqi",
"version": "0.0.3",
"manifest_version": 2,
"description": "查看公众号、管理书架、设置阅读页面 UI",
"homepage_url": "https://weread.qq.com",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "zh_CN",
"background": {
"page": "src/bg/background.html",
"persistent": true
},
"browser_action": {
"default_popup": "src/popup/popup.html"
},
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"tts",
"*://i.weread.qq.com/*",
"*://weread.qq.com/*",
"*://r.qq.com/*",
"*://*.file.myqcloud.com/*"
],
"content_scripts": [{
"run_at": "document_end",
"matches": ["*://weread.qq.com/*"],
"js": ["assets/js/jquery.min.js", "assets/js/lodash.min.js", "src/ui.js"]
}],
"content_security_policy": "script-src 'self' 'sha256-NeK5uABt0EHXknKz0Fuhb7a5Zbb44aQ0yGE+wP/uoBo='; object-src 'self'"
}