-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
40 lines (37 loc) · 1.09 KB
/
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
{
"name": "Sethacks Project",
"version": "0.1",
"description": "Coupons..",
"permissions": [
"activeTab",
"<all_urls>",
"tabs"
],
"background": {
"page": "background.html",
"persistent": false
},
"content_scripts": [
{
"matches": ["https://www.sephora.com/ca/en/"],
"exclude_globs":["*checkout*"],
"js": ["app.js"],
"css": ["main.css"],
"run_at": "document_end"
},
{
"matches": ["https://www.sephora.com/ca/en/"],
"exclude_globs": ["<all_urls>"],
"include_globs": ["*checkout*"],
"js":["checkout.js"],
"css": ["checkout.css"],
"run_at": "document_start"
}
],
"icons": { "16" : "images/smallcart.png",
"48" : "images/cart.png",
"128": "images/KindKartLogo.png"},
"manifest_version": 2,
"web_accessible_resources": ["images/*"],
"content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'"
}