-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
32 lines (32 loc) · 890 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
{
"name": "Homework Helper",
"version": "1.7",
"description": "Right Click on highlighted text, to automatically search for answers from Quizlet.",
"icons": {
"16": "./images/icon16.png",
"32": "./images/icon32.png",
"48": "./images/icon48.png",
"128": "./images/icon128.png",
"256": "./images/icon256.png",
"512": "./images/icon512.png"
},
"permissions": [
"contextMenus",
"http://www.google.com/*",
"https://www.google.com/*",
"https://www.googleapis.com/*",
"http://www.googleapis.com/*",
"https://quizlet.com/*",
"http://quizlet.com/*"
],
"browser_action": {
"default_popup": "./src/popupWidget.html",
"default_title": "Homework Helper",
"default_icon": "/images/icon32.png"
},
"background": {
"scripts": ["./src/background.js"]
},
"options_page": "./src/options.html",
"manifest_version": 2
}