AT Ad Age
Add the age of the ad to listings on Autotrader
Was ist AT Ad Age?
AT Ad Age ist eine Chrome-Erweiterung, die von John Smith entwickelt wurde, und ihr Hauptmerkmal ist "Add the age of the ad to listings on Autotrader".
Erweiterungsscreenshots
AT Ad Age-Erweiterungs-CRX-Datei herunterladen
Laden Sie AT Ad Age-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | egcekjgdjpdcbhbijooeibkfoafhcojm |
| Offizielle URL | https://chromewebstore.google.com/detail/at-ad-age/egcekjgdjpdcbhbijooeibkfoafhcojm |
| Beschreibung | Add the age of the ad to listings on Autotrader |
| Dateigröße | 19.78 KB |
| Installationsanzahl | 210 |
| Aktuelle Version | 1.63 |
| Letztes Update | 2023-01-24 |
| Veröffentlichungsdatum | 2023-01-09 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | John Smith |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://ko-fi.com/johnsmithsextensions |
| Hilfeseite URL | https://ko-fi.com/johnsmithsextensions |
| Unterstützte Sprachen | 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"
]
}
]
} | |