-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
45 lines (44 loc) · 1.06 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
41
42
43
44
45
{
"name": "songsterr.gp",
"version": "1.0",
"author": "RJDesidia",
"description": "скачивает guitar pro файл с сайта Songsterr",
"permissions": [
"activeTab",
"declarativeContent",
"webRequest",
"webRequestBlocking",
"http://www.songsterr.com/*",
"http://songsterr.com/*",
"https://www.songsterr.com/*",
"https://songsterr.com/*"
],
"background": {
"scripts": [
"songDownloader.js"
]
},
"browser_action": {
"default_title": "songsterr.gp",
"default_icon": "icon512.png"
},
"content_scripts": [
{
"matches": [
"http://www.songsterr.com/a/wa/*",
"https://www.songsterr.com/a/wa/*",
"http://songsterr.com/a/wa/*",
"https://songsterr.com/a/wa/*",
"http://www.songsterr.com/a/wsa/*",
"https://www.songsterr.com/a/wsa/*",
"http://songsterr.com/a/wsa/*",
"https://songsterr.com/a/wsa/*",
"https://*.cloudfront.net/*"
],
"js": [
"patchState.js"
]
}
],
"manifest_version": 2
}