AT Toolkit

An extension to improve the user experience on the AutoTrader UK website.

Τι είναι το AT Toolkit;

Το AT Toolkit είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον AT Toolkit, και η κύρια λειτουργία του είναι "An extension to improve the user experience on the AutoTrader UK website.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης AT Toolkit

Λήψη αρχείων επέκτασης AT Toolkit σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        A Chrome extension to improve the user experience on the AutoTrader UK website.

Features:

SEARCH

- Hide results from specific dealers
- Show the date the listing was added
- Hide promoted/ad listings at the top/bottom of each page of results
- Hide the highlighted dealer section that's sometimes at the top of the page

LISTING

- Show the date the listing was added
- Show dealer postcode
- Show MOT expiry date (if the seller has provided it to AutoTrader)
- Show previous owners if hidden*
- Show a partial vehicle registration**

Any of these features can be toggled off if preferred.

* AutoTrader gives the option for sellers to hide the number of previous owners, but if the seller provides it, the number is still available in the page data; the extension will add that information back into the listing.

** AutoTrader provides a partial registration, specifically the first character and the last 2 characters, e.g. A??? ?BC. AT Toolkit will display this and, if the registration fits the regular GB format, add in the plate year to give a partial registration, e.g. A?12 ?BC. This can be used with a site like partialnumberplate.co.uk to find the full reg.

Please be aware this struggles with plates in the NI style, old GB style, and private plates. Private plates in the regular GB style LLNN LLL might give an incorrect partial plate because the NN might not match the vehicle's registration year.

This extension is free, with no ads and no tracking (and always will be).

If you're enjoying my extension and would like to send your thanks as a one-off donation, I have a Ko-fi page here: https://ko-fi.com/attoolkit                    

Βασικές Πληροφορίες Επέκτασης

Όνομα AT Toolkit AT Toolkit
ID gnhmlpdpihpgjkfaipkigpkmfoeppibk
Επίσημο URL https://chromewebstore.google.com/detail/at-toolkit/gnhmlpdpihpgjkfaipkigpkmfoeppibk
Περιγραφή An extension to improve the user experience on the AutoTrader UK website.
Μέγεθος Αρχείου 6.8 MB
Αριθμός Εγκαταστάσεων 1,215
Τρέχουσα Έκδοση 2023.09.12.01
Τελευταία Ενημέρωση 2023-09-13
Ημερομηνία Δημοσίευσης 2023-03-23
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής AT Toolkit
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://ko-fi.com/attoolkit
URL της Σελίδας Πολιτικής Απορρήτου https://ko-fi.com/post/AT-Toolkit-Privacy-Policy-O5O0JQ434
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AT Toolkit",
    "description": "An extension to improve the user experience on the AutoTrader UK website.",
    "version": "2023.09.12.01",
    "icons": {
        "16": "Images\/icon-16.png",
        "32": "Images\/icon-32.png",
        "48": "Images\/icon-48.png",
        "128": "Images\/icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "Images\/icon-16.png",
                "Scripts\/harvest.js"
            ],
            "matches": [
                "https:\/\/*.autotrader.co.uk\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "js": [
                "Scripts\/search.js"
            ],
            "matches": [
                "https:\/\/*.autotrader.co.uk\/*-search?*"
            ]
        },
        {
            "js": [
                "Scripts\/listing.js"
            ],
            "matches": [
                "https:\/\/*.autotrader.co.uk\/*-details\/*"
            ]
        },
        {
            "js": [
                "Scripts\/retailer.js"
            ],
            "matches": [
                "https:\/\/*.autotrader.co.uk\/retailer\/stock*"
            ]
        }
    ],
    "action": {
        "default_title": "AT Toolkit",
        "default_popup": "options.html"
    }
}