AT Ad Age
Add the age of the ad to listings on Autotrader
Co to jest AT Ad Age?
AT Ad Age to rozszerzenie Chrome opracowane przez John Smith, a jego główną funkcją jest „Add the age of the ad to listings on Autotrader”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia AT Ad Age
Pobierz pliki rozszerzeń AT Ad Age w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | AT Ad Age |
ID | egcekjgdjpdcbhbijooeibkfoafhcojm |
Oficjalny URL | https://chromewebstore.google.com/detail/at-ad-age/egcekjgdjpdcbhbijooeibkfoafhcojm |
Opis | Add the age of the ad to listings on Autotrader |
Rozmiar pliku | 19.78 KB |
Liczba instalacji | 210 |
Aktualna Wersja | 1.63 |
Ostatnia Aktualizacja | 2023-01-24 |
Data Publikacji | 2023-01-09 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | John Smith |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://ko-fi.com/johnsmithsextensions |
Adres URL Strony Pomocy | https://ko-fi.com/johnsmithsextensions |
Obsługiwane Języki | 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" ] } ] } |