AT Ad Age
Add the age of the ad to listings on Autotrader
Hvad er AT Ad Age?
AT Ad Age er en Chrome-udvidelse udviklet af John Smith, og dens hovedfunktion er "Add the age of the ad to listings on Autotrader".
Udvidelsesskærmbilleder
Download AT Ad Age-udvidelses-CRX-fil
Download AT Ad Age-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | AT Ad Age |
ID | egcekjgdjpdcbhbijooeibkfoafhcojm |
Officiel URL | https://chromewebstore.google.com/detail/at-ad-age/egcekjgdjpdcbhbijooeibkfoafhcojm |
Beskrivelse | Add the age of the ad to listings on Autotrader |
Filstørrelse | 19.78 KB |
Antal Installationer | 210 |
Nuværende Version | 1.63 |
Senest Opdateret | 2023-01-24 |
Udgivelsesdato | 2023-01-09 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | John Smith |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://ko-fi.com/johnsmithsextensions |
Hjælpeside-URL | https://ko-fi.com/johnsmithsextensions |
Understøttede Sprog | 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" ] } ] } |