-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (41 loc) · 936 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
37
38
39
40
41
{
"manifest_version": 3,
"name": "Translation Extension",
"version": "1.0",
"description": "Extension dịch nhanh văn bản từ tiếng Anh sang tiếng Việt khi bôi đen.",
"author": "Phan Thùy Dung", // Thêm tác giả và ID
"permissions": [
"activeTab",
"scripting",
"storage"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon.png",
"48": "icons/icon.png",
"128": "icons/icon.png"
}
},
"icons": {
"16": "icons/icon.png",
"48": "icons/icon.png",
"128": "icons/icon.png"
},
"commands": {
"toggle-enable-disable": {
"suggested_key": {
"default": "Alt+X"
},
"description": "Bật/tắt chức năng dịch"
}
},
"host_permissions": [
"https://translate.googleapis.com/*",
"https://*/*",
"http://*/*"
]
}