-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
29 lines (29 loc) · 903 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
{
"manifest_version": 3,
"name": "iBroadcast Better",
"description": "Forces the default streaming bitrate to 320kbps if \"Original Bitrate Streaming\" is not selected. Requires premium account to work. The player still shows 128kbps but you can actually hear the difference (or inspect the page source and see there).",
"version": "0.37",
"permissions": [],
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"content_scripts": [
{
"matches": [ "*://*.ibroadcast.com/*" ],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": ["script.js"],
"matches": [ "*://*.ibroadcast.com/*" ]
}
],
"action": {
"default_icon": "images/icon32.png"
}
}