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" ] } ] } |