Sold By Amazon
This extension reloads any Amazon search results with only products sold and shipped by Amazon.
Sold By Amazonคืออะไร?
Sold By Amazon เป็นส่วนขยายของ Chrome ที่พัฒนาโดย phunglovescats และคุณลักษณะหลักของมันคือ "This extension reloads any Amazon search results with only products sold and shipped by Amazon."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sold By Amazon
ดาวน์โหลดไฟล์ส่วนขยาย Sold By Amazon ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Ever wanted to just see products that are sold and shipped by Amazon? (Lots of promotions require items be sold and shipped by Amazon, for instance.) Simply do a search on Amazon and then click this extension, and it will reload with items that are sold and shipped by Amazon. Thanks for downloading!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Sold By Amazon |
ID | pjckdfjhkhlnohkhbkolbmpljgfcnmae |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/sold-by-amazon/pjckdfjhkhlnohkhbkolbmpljgfcnmae |
คำอธิบาย | This extension reloads any Amazon search results with only products sold and shipped by Amazon. |
ขนาดไฟล์ | 11.5 KB |
จำนวนการติดตั้ง | 234 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2023-07-05 |
วันที่เผยแพร่ | 2023-07-04 |
คะแนน | 4.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | phunglovescats |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Sold By Amazon", "version": "1.0", "description": "This extension reloads any Amazon search results with only products sold and shipped by Amazon.", "permissions": [ "activeTab" ], "action": { "default_popup": "popup.html" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/*" ], "js": [ ".\/scripts\/content.js" ] } ] } |