-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmanifest.json
40 lines (40 loc) · 910 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
{
"manifest_version": 2,
"name": "SpotiAds - Ads remover for Spotify™",
"short_name": "SpotiAdBlocker",
"description": "Removes audio ads on Spotify™ Web Player",
"version": "1.1.6",
"permissions":
[
"webRequest",
"webRequestBlocking",
"*://open.spotify.com/*"
],
"icons":
{
"128": "images/icon_2_128.png"
},
"browser_action": {
"default_icon": "images/icon_2_128.png",
"default_popup": "popup/popup.html"
},
"background":
{
"scripts": ["background.js"],
"persistent": true
},
"content_scripts":
[
{
"matches": ["https://open.spotify.com/*"],
"js": ["content_script.js"],
"run_at": "document_start"
},
{
"matches": ["https://open.spotify.com/*"],
"js": ["lib/sweetalert.min.js"],
"css": ["styles.css"]
}
],
"web_accessible_resources": [ "injected/*", "lib/*"]
}