AT Ad Age

AT Ad Age

Add the age of the ad to listings on Autotrader

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AT Ad Age",
  "version": "1.63",
  "description": "Add the age of the ad to listings on Autotrader",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "host_permissions": [
    "https://www.autotrader.co.uk/*"
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/listing.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://www.autotrader.co.uk/car-details/*",
        "https://www.autotrader.co.uk/van-details/*"
      ]
    },
    {
      "js": [
        "scripts/search.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://www.autotrader.co.uk/car-search*",
        "https://www.autotrader.co.uk/van-search*"
      ]
    },
    {
      "js": [
        "scripts/saved_ads.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://www.autotrader.co.uk/secure/saved-adverts"
      ]
    }
  ]
}