forked from pigpagnet/save-telegram-chat-history
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (33 loc) · 941 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
{
"manifest_version": 2,
"name": "Save Telegram Chat History",
"description": "Dumps your Telegram chat history with an active peer to plaintext.",
"version": "2.2.1",
"author": "pigpag.net",
"homepage_url": "https://github.com/pigpagnet/save-telegram-chat-history",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "icon16.png",
"default_popup": "popup.html",
"default_title": "Save Telegram Chat History"
},
"content_scripts": [
{
"matches": ["https://web.telegram.org/*"],
"js": ["jquery-1.12.0.min.js", "angular-1.5.8.min.js","jquery.nanoscroller.0.8.7.js", "content_script.js"]
}
],
"options_page": "options.html",
"permissions": [
"activeTab",
"storage"
],
"web_accessible_resources": ["generic_tools.js","inject.js"]
}