-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
41 lines (35 loc) · 848 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
34
35
36
37
38
39
40
41
{
"manifest_version": 2,
"name": "Coupon Searcher Extension",
"version": "1.0",
"description": "Find coupons for you",
"icons": {
"128": "resources/icon128.png",
"48": "resources/icon48.png",
"16": "resources/icon16.png"
},
"page_action": {
"default_icon": "resources/icon16.png",
"default_popup": "popup.html",
"default_title": "Coupons"
},
"options_page": "options.html",
"background": {
"scripts": ["eventPage.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://www.amazon.com/*"],
"js": ["libs/jquery-3.3.1.min.js", "libs/bootstrap.min.js", "libs/popper.min.js", "content.js"],
"css": ["css/content.css"]
}
],
"permissions": [
"tabs",
"contextMenus",
"storage",
"notifications",
"https://www.amazon.com/*"
]
}