-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
44 lines (44 loc) · 982 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
{
"name": "Telemark",
"version": "1.6",
"description": "Bookmark your tabs in Telegram!",
"browser_action": {
"default_popup": "popup/index.html",
"default_icon": {
"16": "images/telemark_16.png",
"32": "images/telemark_32.png",
"48": "images/telemark_48.png",
"128": "images/telemark_128.png"
}
},
"commands": {
"send-to-telegram": {
"suggested_key": {
"default": "Ctrl+Shift+K",
"mac": "Command+Shift+K"
},
"description": "Send to Telegram."
}
},
"icons": {
"16": "images/telemark_16.png",
"32": "images/telemark_32.png",
"48": "images/telemark_48.png",
"128": "images/telemark_128.png"
},
"background": {
"scripts": [
"script/jquery.js",
"script/functions.js",
"script/background.js"
]
},
"permissions": [
"storage",
"tabs",
"contextMenus",
"clipboardRead",
"https://api.tgmark.ir/*"
],
"manifest_version": 2
}