AT Ad Age

Add the age of the ad to listings on Autotrader

Cos'è AT Ad Age?

AT Ad Age è un'estensione di Chrome sviluppata da John Smith, e la sua funzione principale è "Add the age of the ad to listings on Autotrader".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione AT Ad Age

Scarica i file di estensione AT Ad Age in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Displays age of advertisement on the Autotrader UK website.

If you like using the extension, please consider buying me a coffee! https://ko-fi.com/johnsmithsextensions                    

Informazioni di Base sull'Estensione

Nome AT Ad Age AT Ad Age
ID egcekjgdjpdcbhbijooeibkfoafhcojm
URL Ufficiale https://chromewebstore.google.com/detail/at-ad-age/egcekjgdjpdcbhbijooeibkfoafhcojm
Descrizione Add the age of the ad to listings on Autotrader
Dimensione del File 19.78 KB
Conteggio Installazioni 210
Versione Corrente 1.63
Ultimo Aggiornamento 2023-01-24
Data di Pubblicazione 2023-01-09
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore John Smith
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://ko-fi.com/johnsmithsextensions
URL della Pagina di Aiuto https://ko-fi.com/johnsmithsextensions
Lingue Supportate en-GB
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"
            ]
        }
    ]
}