-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmanifest.json
More file actions
55 lines (55 loc) · 1.46 KB
/
Copy pathmanifest.json
File metadata and controls
55 lines (55 loc) · 1.46 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
50
51
52
53
54
55
{
"manifest_version": 3,
"name": "NebulaEncrypt",
"version": "1.0",
"description": "Локальное шифрование сообщений в Telegram и MAX. Ключи только на устройстве.",
"permissions": ["activeTab", "scripting", "storage", "tabs", "notifications", "clipboardWrite"],
"browser_specific_settings": {
"gecko": {
"id": "nebulaencrypt@example.com",
"strict_min_version": "121.0"
}
},
"icons": {
"16": "icon-16.png",
"32": "encrypted-icon.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"background": {
"scripts": ["extension-api.js", "background.js"],
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "icon-16.png",
"32": "encrypted-icon.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"default_popup": "popup.html",
"default_title": "NebulaEncrypt"
},
"commands": {
"encrypt-text": {
"suggested_key": {
"default": "Ctrl+Alt+E",
"mac": "Ctrl+Shift+E"
},
"description": "Зашифровать текст"
},
"decrypt-text": {
"suggested_key": {
"default": "Ctrl+Alt+D",
"mac": "Ctrl+Shift+D"
},
"description": "Расшифровать сообщения"
}
},
"content_scripts": [
{
"matches": ["https://web.telegram.org/*","https://web.max.ru/*"],
"js": ["extension-api.js", "content.js"]
}
]
}