forked from olsh/Feedly-Notifier-Firefox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.9 KB
/
package.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "feedly-notifier",
"fullName": "Feedly Notifier",
"id": "jid1-BOjn8b0IM7kH2w",
"description": "Feedly notifier is a tiny extension that keeps you up to date with your feedly subscriptions.",
"author": "Dmitriy Samodov, Oleg Shevchenko",
"license": "MPL 2.0",
"homepage": "http://olsh.github.io/Feedly-Notifier-Firefox",
"version": "2.1.0",
"icon": "data/images/icon48.png",
"icon64": "data/images/icon64.png",
"translators": ["Jérémy Hagège", "Jucá Costa", "Giuliano Masseroni"],
"dependencies": ["toolbarwidget", "addon-sdk"],
"preferences": [
{
"name": "updateInterval",
"title": "",
"type": "integer",
"value": 2
},
{
"name": "maxNumberOfFeeds",
"title": "",
"type": "integer",
"value": 20
},
{
"name": "markReadOnClick",
"title": "",
"type": "bool",
"value": true
},
{
"name": "showFullFeedContent",
"title": "",
"type": "bool",
"value": false
},
{
"name": "showDesktopNotifications",
"title": "",
"type": "bool",
"value": true
},
{
"name": "openSiteOnIconClick",
"title": "",
"type": "bool",
"value": false
},
{
"name": "showCounter",
"title": "",
"type": "bool",
"value": true
},
{
"name": "playSound",
"title": "",
"type": "bool",
"value": false
},
{
"type": "control",
"label": "Logout",
"name": "logout",
"title": ""
}
]
}