Files
autotrader-marker/manifest.json
T
tony ed92298b79 Release v0.1.2: site-backup persistence + PNG toolbar icons
- Mirror dismissals to window.localStorage on autotrader.co.uk ("atm:..."
  key). If browser.storage.local comes up empty after a quirky reinstall,
  the content script rehydrates from the site backup on the next page load.
- Replace the SVG toolbar icon with PNG renders (16/32/48/96/128) — some
  Firefox installs don't render extension SVG icons reliably in the
  toolbar / extensions flyout.
- Sharp added as a devDependency to rebuild icons from icon.svg.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-22 13:31:46 +00:00

54 lines
1.2 KiB
JSON

{
"manifest_version": 3,
"name": "AutoTrader Marker",
"version": "0.1.2",
"description": "Mark AutoTrader listings as 'not wanted' so you can spot the ones you haven't reviewed yet.",
"permissions": [
"storage"
],
"host_permissions": [
"*://*.autotrader.co.uk/*"
],
"content_scripts": [
{
"matches": [
"*://*.autotrader.co.uk/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle",
"all_frames": false
}
],
"action": {
"default_title": "AutoTrader Marker",
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png"
}
},
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "autotrader-marker@tony.codes",
"strict_min_version": "115.0",
"update_url": "https://git.nocker.cloud/tony/autotrader-marker/raw/branch/main/dist/updates.json",
"data_collection_permissions": {
"required": [
"none"
]
}
}
}
}