forked from new-computers/arena-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
44 lines (44 loc) · 1001 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
41
42
43
44
{
"manifest_version": 2,
"name": "Are.na Toolkit",
"version": "0.1.0",
"description": "Access to tools",
"content_scripts": [{
"css": [
"core/style.css",
"tools/maps/style.css",
"tools/print/style.css",
"tools/show/style.css",
"tools/there/style.css",
"tools/history/style.css",
"tools/related/style.css"
],
"js": [
"core/inject.js",
"tools/maps/content.js",
// "tools/maps/bower_components/vis/dist/vis.js",
"tools/maps/pure.js",
"tools/print/content.js",
"tools/show/content.js",
"tools/there/content.js",
"tools/history/content.js",
"tools/related/content.js",
"core/content.js"
],
"matches": [
"https://www.are.na/*",
"https://are.na/*"
]
}],
"background": {
"scripts": [
"core/background.js",
"core/reload.js"
]
},
"web_accessible_resources" : ["core/relay.js"],
"permissions": [
"tabs",
"storage"
]
}