-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
56 lines (56 loc) · 1.02 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
{
"manifest_version": 3,
"name": "AiT",
"version": "1.2",
"description": "基于国内大模型实现的沉浸式翻译插件,支持星火,通义,kimi",
"permissions": [
"<all_urls>",
"tabs",
"storage",
"contextMenus"
],
"options_page": "setting.html",
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "logo-16.png",
"48": "logo-48.png",
"128": "logo-128.png"
}
},
"web_accessible_resources": [
{
"resources": [
"index.css",
"logo-16.png",
"logo-48.png",
"logo-128.png",
"arrow.svg"
],
"matches": []
}
],
"icons": {
"16": "logo-16.png",
"48": "logo-48.png",
"128": "logo-128.png"
}
}