Buy mode
When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched.
Buy modeคืออะไร?
Buy mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jbsiraudin และคุณลักษณะหลักของมันคือ "When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Buy mode
ดาวน์โหลดไฟล์ส่วนขยาย Buy mode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
When entering Amazon, a small unfocused window is launched with the YouTube playlist of your choice : The Sims' Buy Mode, Nook Store Music, Wii Store Music. Icon Money by henrik lund mikkelsen from the Noun Project
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Buy mode |
ID | chelhfjncfodagiaajlcedabncohepag |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/buy-mode/chelhfjncfodagiaajlcedabncohepag |
คำอธิบาย | When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched. |
ขนาดไฟล์ | 9.21 KB |
จำนวนการติดตั้ง | 149 |
เวอร์ชันปัจจุบัน | 0.3 |
อัปเดตครั้งล่าสุด | 2019-08-07 |
วันที่เผยแพร่ | 2019-08-06 |
คะแนน | 4.67/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | jbsiraudin |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Buy mode", "version": "0.3", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "description": "When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched.", "background": { "persistent": false, "scripts": [ "background.js" ] }, "permissions": [ "tabs", "storage" ], "browser_action": { "default_title": "Buy Mode", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.amazon.com\/*", "https:\/\/*.amazon.fr\/*", "https:\/\/*.amazon.de\/*", "https:\/\/*.amazon.ca\/*", "https:\/\/*.amazon.co.uk\/*", "https:\/\/*.amazon.at\/*", "https:\/\/*.amazon.es\/*", "https:\/\/*.amazon.com.mx\/*", "https:\/\/*.amazon.co.jp\/*", "https:\/\/*.amazon.it\/*", "https:\/\/*.amazon.in\/*", "https:\/\/*.amazon.cn\/*", "https:\/\/*.amazon.com.br\/*", "https:\/\/*.amazon.com.au\/*" ], "all_frames": true, "js": [ "content_script.js" ] } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "manifest_version": 2, "incognito": "split" } |