Local
Find Amazon products locally. Get what you want today, with no shipping cost!
Localคืออะไร?
Local เป็นส่วนขยายของ Chrome ที่พัฒนาโดย berger.m.sophie และคุณลักษณะหลักของมันคือ "Find Amazon products locally. Get what you want today, with no shipping cost!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Local
ดาวน์โหลดไฟล์ส่วนขยาย Local ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is an extension that allows users to search for Amazon products in their own surrounding in order to find local stores at which to buy the desired items. 1) Open up the product page on Amazon 2) Click the extension icon in your bookmarks bar 3) See all the relevant stores on a map!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Local |
ID | apdmmfimgdclckmmkjkojbgmeinlloah |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/local/apdmmfimgdclckmmkjkojbgmeinlloah |
คำอธิบาย | Find Amazon products locally. Get what you want today, with no shipping cost! |
ขนาดไฟล์ | 11.91 KB |
จำนวนการติดตั้ง | 523 |
เวอร์ชันปัจจุบัน | 2.1 |
อัปเดตครั้งล่าสุด | 2022-10-07 |
วันที่เผยแพร่ | 2022-02-02 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | berger.m.sophie |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Local", "description": "Find Amazon products locally. Get what you want today, with no shipping cost!", "version": "2.1", "permissions": [ "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/*", "https:\/\/www.amazon.ca\/*", "https:\/\/www.amazon.co.uk\/*", "https:\/\/www.amazon.at\/*", "https:\/\/www.amazon.de\/*" ], "js": [ "contentScript.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icons8-shop-local-16.png", "32": "images\/icons8-shop-local-32.png", "48": "images\/icons8-shop-local-48.png", "100": "images\/icons8-shop-local-100.png" }, "default_popup": "popup.html" }, "icons": { "16": "images\/icons8-shop-local-16.png", "32": "images\/icons8-shop-local-32.png", "48": "images\/icons8-shop-local-48.png", "100": "images\/icons8-shop-local-100.png" } } |