AT Ad Age
Add the age of the ad to listings on Autotrader
Vad är AT Ad Age?
AT Ad Age är en Chrome-tillägg utvecklad av John Smith, och dess huvudfunktion är "Add the age of the ad to listings on Autotrader".
Tilläggsskärmbilder
Ladda ner AT Ad Age-förlängningens CRX-fil
Ladda ner AT Ad Age-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | egcekjgdjpdcbhbijooeibkfoafhcojm |
| Officiell webbadress | https://chromewebstore.google.com/detail/at-ad-age/egcekjgdjpdcbhbijooeibkfoafhcojm |
| Beskrivning | Add the age of the ad to listings on Autotrader |
| Filstorlek | 19.78 KB |
| Antal Installationer | 210 |
| Aktuell Version | 1.63 |
| Senast Uppdaterad | 2023-01-24 |
| Publiceringsdatum | 2023-01-09 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | John Smith |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://ko-fi.com/johnsmithsextensions |
| Hjälpsida URL | https://ko-fi.com/johnsmithsextensions |
| Stödda Språk | 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"
]
}
]
} | |