Wishlist Total
amazon wishlist total chrome extension, totals all items in wishlist and displays the total
Wishlist Totalคืออะไร?
Wishlist Total เป็นส่วนขยายของ Chrome ที่พัฒนาโดย crimsonfae และคุณลักษณะหลักของมันคือ "amazon wishlist total chrome extension, totals all items in wishlist and displays the total"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wishlist Total
ดาวน์โหลดไฟล์ส่วนขยาย Wishlist Total ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
amazon wishlist total chrome extension, totals all items in wishlist and displays the total
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | efcojkbaeocjjmdhbdcdkadnccmjbgog |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/wishlist-total/efcojkbaeocjjmdhbdcdkadnccmjbgog |
คำอธิบาย | amazon wishlist total chrome extension, totals all items in wishlist and displays the total |
ขนาดไฟล์ | 82.81 KB |
จำนวนการติดตั้ง | 98 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2014-02-05 |
วันที่เผยแพร่ | 2014-02-05 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | crimsonfae |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/howaboutudance/wishlist-total |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Wishlist Total", "version": "1.0", "author": "Michael Penhallegon", "page_action": { "default_icon": "static\/wishlist.png", "default_popup": "popup.html" }, "background": { "script": [ ".\/js\/background.js" ], "page": "background.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.amazon.com\/gp\/registry*" ], "js": [ ".\/lib\/jquery-2.0.3.js", ".\/js\/content.js" ] } ], "permissions": [ "tabs", "storage", "http:\/\/amazon.com\/*", "http:\/\/www.amazon.com\/gp\/registry\/*" ] } |