MuteMachine

Automatically skip songs on the HypeMachine

MuteMachine là gì?

MuteMachine là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Automatically skip songs on the HypeMachine".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng MuteMachine

Tải xuống các tệp mở rộng MuteMachine dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MuteMachine MuteMachine
ID jccdmapgmmonababhfbflfoekpphbkhg
URL Chính Thức https://chromewebstore.google.com/detail/mutemachine/jccdmapgmmonababhfbflfoekpphbkhg
Mô tả Automatically skip songs on the HypeMachine
Kích Thước Tệp 78 KB
Số Lần Cài Đặt 12
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-06-29
Ngày Phát Hành 2014-06-29
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}