Yousee music shortcuts

Yousee music shortcuts for your music needs. Use the media keys to control the music.

Yousee music shortcuts là gì?

Yousee music shortcuts là một tiện ích mở rộng Chrome được phát triển bởi martinkors, và tính năng chính của nó là "Yousee music shortcuts for your music needs. Use the media keys to control the music.".

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

screenshot
screenshot
screenshot

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

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

                        This is an app for Google Chrome that enables you to use your media keys for controlling Yousee Music                    

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

Tên Yousee music shortcuts Yousee music shortcuts
ID eaclcdhgjceodeecmkolehodplhifmob
URL Chính Thức https://chromewebstore.google.com/detail/yousee-music-shortcuts/eaclcdhgjceodeecmkolehodplhifmob
Mô tả Yousee music shortcuts for your music needs. Use the media keys to control the music.
Kích Thước Tệp 8.74 KB
Số Lần Cài Đặt 232
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2019-01-23
Ngày Phát Hành 2019-01-23
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển martinkors
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en,da
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_chrome_extension_name__",
    "version": "1.0.2",
    "description": "__MSG_chrome_extension_description__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png"
        },
        "default_title": "__MSG_chrome_extension_name__"
    },
    "author": "martinkors",
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/musik.yousee.dk\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "commands": {
        "prev": {
            "suggested_key": {
                "default": "MediaPrevTrack",
                "mac": "MediaPrevTrack"
            },
            "description": "__MSG_chrome_extension_previous__",
            "global": true
        },
        "play-pause": {
            "suggested_key": {
                "default": "MediaPlayPause",
                "mac": "MediaPlayPause"
            },
            "description": "__MSG_chrome_extension_play__",
            "global": true
        },
        "next": {
            "suggested_key": {
                "default": "MediaNextTrack",
                "mac": "MediaNextTrack"
            },
            "description": "__MSG_chrome_extension_next__",
            "global": true
        },
        "stop": {
            "suggested_key": {
                "default": "MediaStop",
                "mac": "MediaStop"
            },
            "description": "__MSG_chrome_extension_play__",
            "global": true
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}