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.”。
擴展截圖
下載Play/Pause Button For Yandex Music擴展crx文件
下載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 |
ID | ofiimbenfigghacebjfkihnklgifkcnh |
官方網址 | 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": [] } |