04dc3b70ec
manifest.json 0.5.0 → 0.5.1. CHANGELOG.md entry for the
Quick Stations 8 → 14 expansion (merged from v0.5.1-prep,
commit 609e0ed).
Tagged on Gitea but NOT uploaded to Chrome Web Store until
v0.5.0 clears re-review. Per David: 'we will ship to web store
after the last one gets accepted, that one is important so a
user knows what to do' — the v0.5.0 first-run hint + light
mode + theme toggle are higher-value features and should land
in users' browsers before this stations expansion piles on top.
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "RangerHQ Tuner",
|
|
"version": "0.5.1",
|
|
"description": "Lightweight SomaFM radio player. Logs what plays. One-click search to Spotify, YouTube, Apple Music, Bandcamp. No telemetry.",
|
|
"author": "David Keane",
|
|
"homepage_url": "https://davidtkeane.com/rangerhq-tuner",
|
|
"icons": {
|
|
"16": "src/assets/icons/icon-16.png",
|
|
"32": "src/assets/icons/icon-32.png",
|
|
"48": "src/assets/icons/icon-48.png",
|
|
"128": "src/assets/icons/icon-128.png"
|
|
},
|
|
"action": {
|
|
"default_title": "RangerHQ Tuner",
|
|
"default_popup": "src/popup/popup.html",
|
|
"default_icon": {
|
|
"16": "src/assets/icons/icon-16.png",
|
|
"32": "src/assets/icons/icon-32.png"
|
|
}
|
|
},
|
|
"background": {
|
|
"service_worker": "src/background/service-worker.js",
|
|
"type": "module"
|
|
},
|
|
"chrome_url_overrides": {
|
|
"newtab": "src/newtab/newtab.html"
|
|
},
|
|
"options_page": "src/options/options.html",
|
|
"permissions": ["offscreen", "storage"],
|
|
"host_permissions": [
|
|
"https://somafm.com/*",
|
|
"https://*.somafm.com/*"
|
|
],
|
|
"minimum_chrome_version": "116"
|
|
}
|