Play/Pause Button For Yandex Music

Simple play/pause button for Yandex Music. This button allows to pause or resume current track independently of current tab.

Play/Pause Button For Yandex Music란 무엇입니까?

Play/Pause Button For Yandex Music은(는) illuzor에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple play/pause button for Yandex Music. This button allows to pause or resume current track independently of current tab."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Play/Pause Button For Yandex Music 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Simple play/pause button for Yandex Music with media keys support. This button allows to pause or resume current podcasts independently of current tab or current window. If Yandex Music site is not open, it will be open by click on the icon.

Keyboard media keys support:
 - Play/Pause ⏯;
 - Back ⏮ - skip back;
 - Forward ⏭ - skip forward.

Media keys may be disabled in options.                    

확장 프로그램 기본 정보

이름 Play/Pause Button For Yandex Music Play/Pause Button For Yandex Music
ID ofiimbenfigghacebjfkihnklgifkcnh
공식 URL https://chromewebstore.google.com/detail/playpause-button-for-yand/ofiimbenfigghacebjfkihnklgifkcnh
설명 Simple play/pause button for Yandex Music. This button allows to pause or resume current track independently of current tab.
파일 크기 15.78 KB
설치 횟수 61
현재 버전 1.1.1
최근 업데이트 2024-02-09
출시 날짜 2022-01-05
평점 3.00/5 총 2 개의 평점
개발자 illuzor
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/illuzor/Play-Button-For-Yandex-Music
도움말 페이지 URL https://github.com/illuzor/Play-Button-For-Yandex-Music/issues
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_ext_name__",
    "short_name": "__MSG_ext_short_name__",
    "description": "__MSG_ext_description__",
    "version": "1.1.1",
    "author": "Artem Zanin",
    "default_locale": "en",
    "icons": {
        "16": "images\/Play.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/music.yandex.ru\/*\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/music.yandex.ru\/*\/"
            ],
            "js": [
                "action-play.js",
                "action-skip.js"
            ]
        }
    ],
    "commands": {
        "play-pause": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "description": "__MSG_play_pause__",
            "global": true
        },
        "jump-back": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "description": "__MSG_jump_back__",
            "global": true
        },
        "jump-forward": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "description": "__MSG_jump_forward__",
            "global": true
        }
    },
    "action": []
}