-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
42 lines (42 loc) · 969 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
42
{
"name": "Tolgee Tools",
"version": "1.8.2",
"manifest_version": 3,
"description": "Translate your web application more effectively with Tolgee plugin!",
"action": {
"default_icon": {
"128": "icons/inactive.png"
},
"default_popup": "index.html"
},
"background": {
"scripts": ["src/background/background.ts"],
"service_worker": "src/background/background.ts",
"type": "module"
},
"permissions": ["storage"],
"host_permissions": ["<all_urls>"],
"icons": {
"128": "icons/present.png"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"all_frames": true,
"run_at": "document_idle",
"js": ["src/content/contentScript.ts"]
}
],
"web_accessible_resources": [
{
"resources": ["icons/*"],
"matches": ["*://*/*"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
}
}