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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον illuzor, και η κύρια λειτουργία του είναι "Simple play/pause button for Yandex Music. This button allows to pause or resume current track independently of current tab.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Play/Pause Button For Yandex Music

Λήψη αρχείων επέκτασης Play/Pause Button For Yandex Music σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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": []
}