Files
autotrader-marker/manifest.json
T
tony 066ec44584 Release v0.1.1: hide sponsored listings, broaden detail-page detection
- Hide any card whose anchor carries `journey=FEATURED_LISTING_JOURNEY`
  or whose container is tagged featured/sponsor/promoted.
- Detail-page URL regex now also matches `/classifieds/advert/{id}` and
  `/cars/{slug}/{id}` in case AutoTrader redirects through either.
- Added a `[ATM]` console.log at init so unresolved detection issues can
  be diagnosed from Firefox DevTools.

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

50 lines
1.1 KiB
JSON

{
"manifest_version": 3,
"name": "AutoTrader Marker",
"version": "0.1.1",
"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": "icon.svg"
},
"icons": {
"48": "icon.svg",
"96": "icon.svg",
"128": "icon.svg"
},
"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"
]
}
}
}
}