-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
49 lines (49 loc) · 1.5 KB
/
Copy pathmanifest.json
File metadata and controls
49 lines (49 loc) · 1.5 KB
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
{
"name": "Tolgee Tools",
"version": "1.10.0",
"manifest_version": 3,
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnAWlBy6Y2olMvOiHeL+WSURusjlecxcb7ZYqjVYV0GTz3FvC8QCrb6kb/+nYITxfAjNgzRpZbI2m56JZ55sRSeAwFwEiCYKiH6HLrVhF/43apH8o0qyoybhXuSuH1+5PdI4Rm899MCvHxc2+1TIUbJWg3BTCyCFScF1PytzsBTPygXMtdZwGYdyKX+fuez7sURtBmwctM9KjvNwYjhVz7JAiMnV8c1Y4tkIHqhLIFeWKcwpwCufB+ZirXBRpyN1rijH+Kcz3hDzRMGgRpXQDG73q5zkzlHJmelcpu5gYtp5irwFJC3IvkemfOMBrEjQp/9uO1G6xtcAj6ReuCkvYiQIDAQAB",
"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", "identity"],
"host_permissions": ["<all_urls>"],
"icons": {
"128": "icons/present.png"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"all_frames": true,
"run_at": "document_start",
"js": ["src/content/apiProxyRelayScript.ts"]
},
{
"matches": ["*://*/*"],
"all_frames": true,
"run_at": "document_idle",
"js": ["src/content/contentScript.ts"]
}
],
"web_accessible_resources": [
{
"resources": ["icons/*"],
"matches": ["*://*/*"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "tolgee.localizations@gmail.com",
"strict_min_version": "109.0"
}
}
}