AT Ad Age
Add the age of the ad to listings on Autotrader
¿Qué es AT Ad Age?
AT Ad Age es una extensión de Chrome desarrollada por John Smith, y su función principal es "Add the age of the ad to listings on Autotrader".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión AT Ad Age
Descarga archivos de extensión AT Ad Age en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | AT Ad Age |
ID | egcekjgdjpdcbhbijooeibkfoafhcojm |
URL Oficial | https://chromewebstore.google.com/detail/at-ad-age/egcekjgdjpdcbhbijooeibkfoafhcojm |
Descripción | Add the age of the ad to listings on Autotrader |
Tamaño del Archivo | 19.78 KB |
Cantidad de Instalaciones | 210 |
Versión Actual | 1.63 |
Última Actualización | 2023-01-24 |
Fecha de Publicación | 2023-01-09 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | John Smith |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://ko-fi.com/johnsmithsextensions |
URL de la Página de Ayuda | https://ko-fi.com/johnsmithsextensions |
Idiomas Soportados | 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" ] } ] } |