forked from cschiller/zhongwen
-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
54 lines (54 loc) · 1.2 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
{
"manifest_version": 3,
"name": "HanViet: Từ điển Hán Việt",
"short_name": "HanViet",
"version": "2.2.1",
"author": "Christian Schiller, Liên Hoàng",
"homepage_url": "https://github.com/alienngator/zhongwen",
"description": "Tiện ích tra từ nhanh cho trình duyệt Chromium (Chrome, Cốc Cốc...). Công cụ học tiếng Trung.",
"icons": {
"16": "images/hanviet16.png",
"48": "images/hanviet48.png",
"128": "images/hanviet128.png"
},
"action": {
"default_icon": "images/hanviet48.png",
"default_title": "Từ điển Hán Việt Popup"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/config.js",
"js/jquery-3.3.1.min.js",
"js/zhuyin.js",
"content.js"
],
"css": [
"css/content.css"
],
"all_frames": true
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"contextMenus",
"storage",
"tabs",
"tts"
],
"commands": {
"_execute_action": {
"description": "Enable/Disable Hanviet"
}
}
}