-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
43 lines (43 loc) · 1021 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
{
"manifest_version": 3,
"name": "RBJunior MiniApp Bypass",
"version": "1.2",
"description": "An extension to bypass all Telegram mini apps, Community: https://t.me/Airdrop_DailyOfficial",
"icons": {
"16": "images/16.png",
"32": "images/32.png",
"48": "images/48.png",
"128": "images/128.png"
},
"content_scripts": [
{
"js": ["scripts/telegram.js"],
"matches": [
"https://web.telegram.org/*"
]
}
],
"action": {
"default_title": "View information",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"scripting",
"webNavigation",
"declarativeNetRequest",
"declarativeNetRequestFeedback"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"host_permissions": [
"http://*/*", "https://*/*"
]
}