-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·33 lines (33 loc) · 815 Bytes
/
manifest.json
File metadata and controls
executable file
·33 lines (33 loc) · 815 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
{
"name": "Wikihover",
"version": "0.0.3",
"manifest_version": 2,
"description": "A Chrome extension that allows you get the summary of an article with the hover of your mouse.",
"homepage_url": "http://ellenbrook.github.io",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"permissions": [
"http://wikipedia.org/*",
"https://wikipedia.org/*",
"http://en.wikipedia.org/*",
"https://en.wikipedia.org/*"
],
"content_scripts": [
{
"matches": [
"http://wikipedia.org/*",
"https://wikipedia.org/*",
"http://*.wikipedia.org/*",
"https://*.wikipedia.org/*"
],
"js": [
"js/jquery/jquery.js",
"src/inject/inject.js"
]
}
]
}