-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (29 loc) · 820 Bytes
/
manifest.json
File metadata and controls
35 lines (29 loc) · 820 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
35
{
"manifest_version": 2,
"name": "FlashDict",
"description": "Just double click on any word and get its meaning instantly.",
"version": "1.2.1",
"background": {
"scripts": ["js/jquery-1.12.4.min.js", "js/background.js"],
"persistent": false
},
"content_scripts": [{
"matches": ["<all_urls>"],
"css": ["css/content_script.css"],
"js": ["js/jquery-1.12.4.min.js","js/pluralize.js","js/content_script.js"],
"run_at": "document_end"
}],
"browser_action": {
"default_icon": "images/icon48.png",
"default_title": "Click to Disable" },
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"permissions": [
"activeTab",
"http://services.aonaware.com/*",
"https://en.wikipedia.org/*"
]
}