forked from astronomersiva/FingInfo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (30 loc) · 714 Bytes
/
Copy pathmanifest.json
File metadata and controls
34 lines (30 loc) · 714 Bytes
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
{
"manifest_version": 2,
"name": "FingInfo",
"description": "Returns details about the selected word",
"version": "1.0",
"browser_action": {
"default_popup": "index.html",
"default_icon": "img/finger.png"
},
"permissions": [
"tabs",
"<all_urls>",
"https://ajax.googleapis.com/"
],
"content_security_policy": "script-src 'self' https://en.wikipedia.org/w/api.php; object-src 'self'",
"content_scripts": [
{
"all_frames": false,
"matches": ["<all_urls>"],
"run_at": "document_start",
"all_frames": true,
"exclude_matches": [],
"js": [
"js/jquery.js",
"js/jquery.wikiblurb.js",
"js/selection.js"
]
}
]
}