AT Ad Age
Add the age of the ad to listings on Autotrader
Τι είναι το AT Ad Age;
Το AT Ad Age είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον John Smith, και η κύρια λειτουργία του είναι "Add the age of the ad to listings on Autotrader".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης AT Ad Age
Λήψη αρχείων επέκτασης AT Ad Age σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | AT Ad Age |
ID | egcekjgdjpdcbhbijooeibkfoafhcojm |
Επίσημο URL | https://chromewebstore.google.com/detail/at-ad-age/egcekjgdjpdcbhbijooeibkfoafhcojm |
Περιγραφή | Add the age of the ad to listings on Autotrader |
Μέγεθος Αρχείου | 19.78 KB |
Αριθμός Εγκαταστάσεων | 210 |
Τρέχουσα Έκδοση | 1.63 |
Τελευταία Ενημέρωση | 2023-01-24 |
Ημερομηνία Δημοσίευσης | 2023-01-09 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | John Smith |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://ko-fi.com/johnsmithsextensions |
Διεύθυνση URL της Σελίδας Βοήθειας | https://ko-fi.com/johnsmithsextensions |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |