AT Ad Age
Add the age of the ad to listings on Autotrader
O que é AT Ad Age?
AT Ad Age é uma extensão do Chrome desenvolvida por John Smith, e sua principal característica é "Add the age of the ad to listings on Autotrader".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão AT Ad Age
Baixe arquivos de extensão AT Ad Age no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | AT Ad Age |
ID | egcekjgdjpdcbhbijooeibkfoafhcojm |
URL Oficial | https://chromewebstore.google.com/detail/at-ad-age/egcekjgdjpdcbhbijooeibkfoafhcojm |
Descrição | Add the age of the ad to listings on Autotrader |
Tamanho do Arquivo | 19.78 KB |
Contagem de Instalações | 210 |
Versão Atual | 1.63 |
Última Atualização | 2023-01-24 |
Data de Publicação | 2023-01-09 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | John Smith |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://ko-fi.com/johnsmithsextensions |
URL da Página de Ajuda | https://ko-fi.com/johnsmithsextensions |
Idiomas Suportados | 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" ] } ] } |