-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathmanifest.json
48 lines (48 loc) · 1.33 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
{
"manifest_version": 2,
"name": "FairyDict",
"description": "包含几乎所有网上常见的词典,支持鼠标取词、键盘取词和右键菜单的词典软件,各种快捷键设置,学习的好帮手,词典爱好者的福音",
"version": "3.4",
"permissions": ["activeTab", "tabs", "storage", "contextMenus", "<all_urls>"],
"background": {
"persistent": true,
"page": "background.html"
},
"content_scripts": [
{
"js": [
"bower_components/jquery/dist/jquery.js",
"utils.js",
"content/inject.js"
],
"css": ["content/inject.css", "content/inject-fontello.css"],
"matches": ["<all_urls>"],
"run_at": "document_start"
}
],
"options_page": "options.html",
"web_accessible_resources": [
"template/header.html",
"fonts/*",
"fonts/FontAwesome.otf",
"fonts/fontawesome-webfont.svg",
"fonts/fontawesome-webfont.woff",
"fonts/glyphicons-halflings-regular.eot",
"fonts/glyphicons-halflings-regular.ttf",
"fonts/fontawesome-webfont.eot",
"fonts/fontawesome-webfont.ttf",
"fonts/fontawesome-webfont.woff2",
"fonts/glyphicons-halflings-regular.svg",
"fonts/glyphicons-halflings-regular.woff"
],
"browser_action": {
"default_icon": {
"19": "images/books-48.png",
"38": "images/books-48.png"
}
},
"icons": {
"48": "images/books-96.png"
},
"minimum_chrome_version": "23"
}