484191a974
The Chrome Web Store enforces a 132-character limit on the manifest description field. The v0.3.0 description was 195 chars and got rejected on upload. Trimmed to the same wording as the listing short description in WEB_STORE_SUBMISSION.md §2. The longer 1500-char marketing description still lives in §3 of the submission notes and goes in the Dashboard's 'Detailed description' field at listing time.
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "RangerHQ Tuner",
|
|
"version": "0.3.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"
|
|
}
|