-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·36 lines (36 loc) · 907 Bytes
/
manifest.json
File metadata and controls
executable file
·36 lines (36 loc) · 907 Bytes
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
{
"name": "scam",
"version": "1.3.1",
"manifest_version": 2,
"description": "SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.",
"homepage_url": "https://github.com/nihilist/scam",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png",
"240": "icons/icon240.png"
},
"content_scripts": [
{
"matches": ["https://soundcloud.com/*"],
"js": ["src/switcher.js"],
"run_at": "document_idle"
},
{
"matches": ["https://secure.soundcloud.com/*"],
"js": ["src/login.js"],
"all_frames": true,
"run_at": "document_start"
}
],
"background": {
"scripts": ["src/background.js"],
"persistent": false
},
"permissions": [
"cookies",
"https://soundcloud.com/*",
"https://api-auth.soundcloud.com/*",
"https://secure.soundcloud.com/*"
]
}