forked from dokieli/dokieli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
47 lines (47 loc) · 1.13 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
40
41
42
43
44
45
46
47
{
"name": "dokieli",
"short_name": "dokieli",
"description": "dokieli is a clientside editor for decentralised article publishing, annotations and social interactions.",
"author":"dokieli",
"homepage_url": "https://dokie.li/",
"version": "0.1",
"manifest_version": 2,
"minimum_chrome_version": "18",
"offline_enabled": true,
"icons": {
"16": "media/images/logo.png",
"48": "media/images/logo.png"
},
"browser_action": {
"default_icon": "media/images/logo.png",
"default_title": "Activate dokieli"
},
"background": {
"scripts": ["chrome-extension-background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["file:///*/*","*://*/*"],
"js": [
"scripts/simplerdf.js",
"scripts/medium-editor.min.js",
"scripts/medium-editor-tables.min.js",
"scripts/do.js",
"chrome-extension-content-script.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"tabs",
"activeTab",
"*://*/*",
"file:///*/*",
"management"
],
"web_accessible_resources": [
"media/css/*",
"media/fonts/*"
]
}