The extension linked nothing and the resolver saw no requests: the content script fetched http://localhost:8787 directly from the HTTPS reddit page, which reddit's CSP / mixed-content blocks. Move the network call to a background script (extension origin, exempt) and add stage logging so failures are visible. - extension/background.js (new): does the resolver fetch on message; sets the toolbar badge. - extension/content.js: talks to background via runtime messaging (no page-context fetch); [rsl] console logs at boot/root/candidates/resolve/scan; single primary link. - extension/manifest.json: background.scripts + browser_action (icon.svg, title). - extension/{styles.css,icon.svg}: platform-coloured link (green=spotify, teal=bandcamp) + toolbar icon. - service/lib.js: primaryOf()/isSearchUrl() — link Spotify when the artist is on Spotify, else Bandcamp, else Spotify search; spotifyResult/mbResult attach `primary` (unit-tested). - README: link behaviour, toolbar, Troubleshooting. Verified: scripts/check.sh green (10 tests); resolver returns `primary` end-to-end. The in-browser fix is logic-verified only (no headless Firefox here) — reload the temp add-on and watch the page console `[rsl]` logs to confirm. Source: project human-feedback 2026-06-16 (notes 01KV8VC58QMYBDY6VVVJHR8YNY + 01KV91AMJCN2C4GFCKMKQRGNXE). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
32 lines
803 B
JSON
32 lines
803 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Reddit → Spotify/Bandcamp linker",
|
|
"version": "0.1.0",
|
|
"description": "Turns artist/album names in reddit comments into Spotify and Bandcamp links.",
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "reddit-spotify-linker@paul.yapplesauce.com",
|
|
"strict_min_version": "109.0"
|
|
}
|
|
},
|
|
"permissions": [
|
|
"http://localhost:8787/*",
|
|
"http://127.0.0.1:8787/*"
|
|
],
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"browser_action": {
|
|
"default_icon": "icon.svg",
|
|
"default_title": "Reddit → Spotify/Bandcamp linker (active on reddit threads)"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*.reddit.com/*"],
|
|
"js": ["content.js"],
|
|
"css": ["styles.css"],
|
|
"run_at": "document_idle"
|
|
}
|
|
]
|
|
}
|