MuteMachine

Automatically skip songs on the HypeMachine

ما هو MuteMachine؟

MuteMachine هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Automatically skip songs on the HypeMachine".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة MuteMachine

قم بتنزيل ملفات الامتداد MuteMachine بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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 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"
    }
}