forked from smoqadam/add-to-feedly
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
40 lines (40 loc) · 842 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
{
"manifest_version": 2,
"name": "Add to Feedly Plus",
"version": "2.0",
"description": "This extension allows you to add your favorite sites' feeds to Feedly. Despite from original add-on this one handles multiple RSS feeds too.",
"icons": {
"32": "assets/icon.svg",
"48": "assets/icon.svg",
"64": "assets/icon.svg"
},
"background": {
"scripts": [
"dist/background.js"
]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": [
"dist/content.js"
]
}],
"applications": {
"gecko": {
"id": "jid1-lpXbkGi1kHPDGQ@jetpack"
}
},
"page_action": {
"default_icon": {
"19": "assets/icon.svg"
},
"browser_style": true
},
"commands": {
"_execute_page_action": {
"suggested_key": {
"default": "Ctrl+Shift+F"
}
}
}
}