Files
rangerhq-tuner/manifest.json
ranger c3e3cc16fd chore: v0.5.0 — bump version + CHANGELOG entry
manifest.json 0.4.0 → 0.5.0. CHANGELOG.md entry documents three
bundled UX improvements:
  - Light mode (Phase 1 auto-follow + Phase 2 manual toggle)
  - Options → Tuner back-link
  - Theme sync across all three surfaces

Zero new permissions, zero new dependencies, zero behaviour change
for existing users (theme defaults to auto = matches v0.4.0 in
dark-OS browsers, which is most installs).

Bundled because v0.4.0 was still in re-review during the work + ship
discipline calls for fewer larger updates over rapid-fire micro-
updates. Same-account re-review window per Web Store rules.
2026-06-10 00:22:16 +01:00

37 lines
1.1 KiB
JSON

{
"manifest_version": 3,
"name": "RangerHQ Tuner",
"version": "0.5.0",
"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"
}