forked from meetDeveloper/Dictionary-Anywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
33 lines (27 loc) · 855 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
{
"author": "Voon Ming Hann",
"manifest_version": 2,
"name": "Logos Dictionary",
"version": "1.0.0",
"description": "English Dictionary for logos.com book readers. Double-click any word to find the definition of a word quickly.",
"icons": {
"48": "icons/Dictionary-48.png",
"64": "icons/Dictionary-64.png",
"96": "icons/Dictionary-96.png",
"128": "icon_128.png"
},
"content_scripts": [
{
"matches": ["https://app.logos.com/books/*"],
"js": ["common/browser-polyfill.js", "content_scripts/dictionary.js"]
}
],
"background": {
"scripts": ["common/browser-polyfill.js", "background/background.js"],
"persistent": false
},
"browser_action": {
"default_title": "Find the definition of a word quickly in app.logos.com."
},
"permissions": ["storage", "https://www.google.com/"]
}