forked from OpenA/lorify-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
34 lines (34 loc) · 951 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
{
"manifest_version": 2,
"name": "lorify-ng",
"version": "3.2.0",
"description": "Расширение для сайта linux.org.ru поддерживающее загрузку комментариев через технологию WebSocket, а так же уведомления об ответах через системные оповещения и многое другое.",
"options_ui": {
"page": "settings.html"
},
"browser_action": {
"default_icon": "icons/loriko-64.png",
"default_popup": "settings.html"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"icons": {
"64": "icons/loriko-64.png"
},
"content_scripts": [{
"run_at": "document_start",
"matches": ["*://www.linux.org.ru/*"],
"js": [
"lorify-ng.user.js"
]
}],
"permissions": [
"*://www.linux.org.ru/*",
"notifications",
"storage",
"alarms",
"tabs"
]
}