forked from PrivacyForge/ChatGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (41 loc) · 1.05 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
{
"manifest_version": 3,
"name": "ChatGuard-beta",
"description": "Browser extension that allow (End to End) encrypted in web chat messenger",
"version": "0.9.6",
"author": "https://github.com/mostafa-kheibary",
"icons": {
"16": "src/assets/icons/icon16.png",
"32": "src/assets/icons/icon32.png",
"48": "src/assets/icons/icon48.png",
"128": "src/assets/icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"https://web.bale.ai/*",
"https://web.telegram.org/*",
"https://web.splus.ir/*",
"https://web.eitaa.com/*",
"https://web.shad.ir/*",
"https://web.rubika.ir/*",
"https://web.igap.net/*"
],
"js": ["src/content/index.ts"]
}
],
"action": {
"default_title": "ChatGuard",
"default_popup": "src/view/popup/index.html"
},
"options_ui": {
"page": "src/view/options/index.html",
"open_in_tab": true
},
"browser_specific_settings": {
"gecko": {
"id": "mostafa.kheibary@gmail.com"
}
},
"permissions": ["storage"]
}