Muze

Tab-Manager-Player to manage multiple music tabs with ease [YouTube, SoundCloud, JioSaavn, Gaana, Youtube Music]

Muze là gì?

Muze là một tiện ích mở rộng Chrome được phát triển bởi gokatz, và tính năng chính của nó là "Tab-Manager-Player to manage multiple music tabs with ease [YouTube, SoundCloud, JioSaavn, Gaana, Youtube Music]".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Muze 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

                        Muze: Manage and control multiple YouTube and SoundCloud tabs with ease! (more music services coming soon...)

Within the extension, you can:
 * play
 * pause
 * go to next song
 * go to previous song
 * loop song
 * start over song 

use handy shortcuts:

Play/Pause - Alt + K
Previous Song - Alt + J
Next Song - Alt + L
and more coming soon...

You can customize shortcuts at chrome://extensions/shortcuts

Love to hear any feedback :) 
Please post it here: https://gokatz.typeform.com/to/MlCJdw                    

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

Tên Muze Muze
ID cgffahicpmdghffiephekgikaajnlilm
URL Chính Thức https://chromewebstore.google.com/detail/muze/cgffahicpmdghffiephekgikaajnlilm
Mô tả Tab-Manager-Player to manage multiple music tabs with ease [YouTube, SoundCloud, JioSaavn, Gaana, Youtube Music]
Kích Thước Tệp 969 KB
Số Lần Cài Đặt 213
Phiên Bản Hiện Tại 3.0.5
Cập Nhật Lần Cuối 2019-07-06
Ngày Phát Hành 2019-07-06
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển gokatz
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.gokatz.me/#/codeprojects/youtaber
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Muze",
    "description": "Tab-Manager-Player to manage multiple music tabs with ease [YouTube, SoundCloud, JioSaavn, Gaana, Youtube Music]",
    "version": "3.0.5",
    "browser_action": {
        "default_icon": "assets\/images\/logo\/logo_new_48.png",
        "default_popup": "index.html",
        "default_title": "Muze : Your music companion"
    },
    "icons": {
        "16": "assets\/images\/logo\/logo_new_16.png",
        "48": "assets\/images\/logo\/logo_new_48.png",
        "128": "assets\/images\/logo\/logo_new_128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/www.youtube.com\/*"
    ],
    "optional_permissions": [
        "tabs",
        "https:\/\/*\/"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "vendor\/js\/jquery.min.js",
            "background\/index.js"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "vendor\/js\/jquery.min.js",
                "content\/content_script.js"
            ],
            "css": [
                "content\/content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "assets\/content\/content.html",
        "assets\/images\/logo\/logo_new_128.png"
    ],
    "commands": {
        "toggle-player": {
            "suggested_key": {
                "default": "Alt+K",
                "windows": "Alt+K",
                "mac": "Alt+K"
            },
            "description": "Toggle player"
        },
        "next-song": {
            "suggested_key": {
                "default": "Alt+L",
                "windows": "Alt+L",
                "mac": "Alt+L"
            },
            "description": "Go to next song"
        },
        "prev-song": {
            "suggested_key": {
                "default": "Alt+J",
                "windows": "Alt+J",
                "mac": "Alt+J"
            },
            "description": "Go to previous song"
        }
    }
}