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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple play/pause button for Yandex Music. This button allows to pause or resume current track independently of current tab."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Play/Pause Button For Yandex Music एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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": [] } |