-
Notifications
You must be signed in to change notification settings - Fork 262
/
manifest.json
39 lines (29 loc) · 1 KB
/
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
{
"manifest_version": 2,
"name": "markdown-clipper",
"version": "1.0",
"author": "Enrico Kaack",
"description": "This extension works like a web clipper, but it downloads articles in a markdown format. Turndown and Readability.js are used as core libraries. It is not guaranteed to work with all websites.",
"icons": {
"16": "/icons/favicon-16x16.png",
"32": "/icons/favicon-32x32.png",
"192": "/icons/favicon-192x192.png",
"512": "/icons/favicon-512x512.png"
},
"permissions": [
"activeTab",
"tabs",
"downloads"
],
"browser_action": {
"default_title": "markdown-clipper",
"default_popup": "popup/clipSite.html",
"default_icon": {
"16": "/icons/favicon-16x16.png",
"32": "/icons/favicon-32x32.png"
}
},
"background": {
"scripts": ["background/turndown.js", "/background/Readability.js", "background/background.js"]
}
}