-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
44 lines (44 loc) · 880 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
43
44
{
"manifest_version": 2,
"name": "TgFixer (unblock Telegram links)",
"version": "1.2.1",
"description": "__MSG_extensionDescription__",
"author": "Roman Deev",
"homepage_url": "https://github.com/deevroman/TgFixer",
"icons": {
"48": "icons/icon_48.png"
},
"permissions": [
"<all_urls>",
"webRequest",
"*://t.me/*",
"*://www.t.me/*",
"*://telegra.ph/*",
"*://www.telegra.ph/*",
"webRequestBlocking"
],
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"src/fixer.js",
"src/page_fixer.js"
]
}
],
"background": {
"scripts": [
"src/handler_t_me.js",
"src/handler_telegra_ph.js"
]
},
"browser_action": {
"default_popup": "src/popup/popup.html",
"default_icon": {
"48": "icons/icon_48.png"
}
},
"default_locale": "en"
}