Skip to content
This repository was archived by the owner on Feb 8, 2025. It is now read-only.

Commit 7311b25

Browse files
committed
fix(manifest)
1 parent 3dfa513 commit 7311b25

File tree

7 files changed

+39
-82
lines changed

7 files changed

+39
-82
lines changed

public/images/extension_48.png

-1.35 KB
Binary file not shown.

public/manifest.json

Lines changed: 39 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,40 @@
1-
{
2-
"manifest_version": 3,
3-
"name": "BOT",
4-
"description": "BOT",
5-
"version": "1.0",
6-
"icons": {
7-
"128": "images/extension_48.png"
8-
},
9-
"action": {
10-
"default_popup": "popup.html",
11-
"default_title": "BOT",
12-
"default_icon": {
13-
"48": "images/extension_48.png"
14-
}
15-
},
16-
"host_permissions": [
17-
"<all_urls>"
18-
],
19-
"content_scripts": [
20-
{
21-
"js": [
22-
"script/content_script.bundle.js"
23-
],
24-
"matches": [
25-
"<all_urls>"
26-
],
27-
"run_at": "document_end"
28-
}
29-
],
30-
"background": {
31-
"service_worker": "script/background.bundle.js"
32-
},
33-
"permissions": [
34-
"scripting",
35-
"storage",
36-
"activeTab",
37-
"tabs",
38-
"webNavigation",
39-
"declarativeNetRequest",
40-
"declarativeNetRequestWithHostAccess",
41-
"declarativeNetRequestFeedback"
42-
]
1+
{
2+
"manifest_version": 3,
3+
"name": "Telegram Mini App Tools",
4+
"version": "1.0",
5+
"description": "Tools for Telegram Mini Apps from the web version.",
6+
"permissions": [
7+
"tabs",
8+
"storage"
9+
],
10+
"host_permissions": [
11+
"*://*.web.telegram.org/*"
12+
],
13+
"background": {
14+
"service_worker": "script/background.bundle.js"
15+
},
16+
"content_scripts": [
17+
{
18+
"matches": [
19+
"*://web.telegram.org/*"
20+
],
21+
"js": [
22+
"script/content_script.bundle.js"
23+
],
24+
"all_frames": true
25+
}
26+
],
27+
"action": {
28+
"default_popup": "popup.html",
29+
"default_icon": {
30+
"16": "images/icon16.png",
31+
"48": "images/icon48.png",
32+
"128": "images/icon128.png"
33+
}
34+
},
35+
"icons": {
36+
"16": "images/icon16.png",
37+
"48": "images/icon48.png",
38+
"128": "images/icon128.png"
39+
}
4340
}

src/manifest.json

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)