AT Ad Age
Add the age of the ad to listings on Autotrader
Что такое AT Ad Age?
AT Ad Age - это расширение Chrome, разработанное John Smith, и его основная функция - "Add the age of the ad to listings on Autotrader".
Снимки экрана расширения
Скачать файл CRX расширения AT Ad Age
Скачайте файлы расширений AT Ad Age в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | AT Ad Age |
ID | egcekjgdjpdcbhbijooeibkfoafhcojm |
Официальный URL | https://chromewebstore.google.com/detail/at-ad-age/egcekjgdjpdcbhbijooeibkfoafhcojm |
Описание | Add the age of the ad to listings on Autotrader |
Размер файла | 19.78 KB |
Количество установок | 210 |
Текущая Версия | 1.63 |
Последнее Обновление | 2023-01-24 |
Дата публикации | 2023-01-09 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | John Smith |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://ko-fi.com/johnsmithsextensions |
URL страницы помощи | https://ko-fi.com/johnsmithsextensions |
Поддерживаемые языки | 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" ] } ] } |