A Chrome extension that scrobbles NTS Radio tracks to teal.fm
1{
2 "manifest_version": 3,
3 "name": "NTS Radio Scrobbler for Teal.fm",
4 "version": "1.0.0",
5 "description": "Scrobbles NTS Radio tracks to Teal.fm",
6 "permissions": ["storage", "activeTab", "notifications"],
7 "host_permissions": [
8 "https://www.nts.live/*",
9 "https://bsky.social/*",
10 "https://musicbrainz.org/*"
11 ],
12 "background": {
13 "service_worker": "background.js"
14 },
15 "content_scripts": [
16 {
17 "matches": ["https://www.nts.live/*"],
18 "js": ["content.js"],
19 "run_at": "document_idle"
20 }
21 ],
22 "action": {
23 "default_popup": "popup.html",
24 "default_icon": {
25 "16": "icons/icon16.png",
26 "48": "icons/icon48.png",
27 "128": "icons/icon128.png"
28 }
29 },
30 "icons": {
31 "16": "icons/icon16.png",
32 "48": "icons/icon48.png",
33 "128": "icons/icon128.png"
34 }
35}