MuteMachine
Automatically skip songs on the HypeMachine
MuteMachineคืออะไร?
MuteMachine เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Automatically skip songs on the HypeMachine"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MuteMachine
ดาวน์โหลดไฟล์ส่วนขยาย MuteMachine ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
MuteMachine helps solve a common problem for users of the HypeMachine, wanting to consistently skip over songs they don't like. MuteMachine automatically skips over any songs users "mute." Maybe you're not as into the new Lana Del Rey album as everyone else, or you've gotten a little bored of that song everyone has just gotten into. Once you click the mute button on a song, MuteMachine will automatically skip to the next song anytime that it tries to play on the HypeMachine. For people who use the HypeMachine every day and as their primary source of music, this extension is a must have to make the experience a little more personal!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | MuteMachine |
ID | jccdmapgmmonababhfbflfoekpphbkhg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mutemachine/jccdmapgmmonababhfbflfoekpphbkhg |
คำอธิบาย | Automatically skip songs on the HypeMachine |
ขนาดไฟล์ | 78 KB |
จำนวนการติดตั้ง | 12 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2014-06-29 |
วันที่เผยแพร่ | 2014-06-29 |
คะแนน | 4.25/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MuteMachine", "short_name": "mutem", "description": "Automatically skip songs on the HypeMachine", "version": "1.0", "content_scripts": [ { "matches": [ "https:\/\/hypem.com\/*", "http:\/\/hypem.com\/*" ], "js": [ "jquery.js", "mutemachine.js" ], "css": [ "mutemachine.css" ], "all_frames": true, "run_at": "document_end" } ], "permissions": [ "storage" ], "icons": { "48": "icon_48.png", "128": "icon_128.png" } } |