Music Pause/Resume
Pause and resume streaming music with a keyboard shortcut
Music Pause/Resumeとは何ですか?
Music Pause/Resumeはjosepcnによって開発されたChromeの拡張機能で、その主な機能は「Pause and resume streaming music with a keyboard shortcut」です。
拡張機能のスクリーンショット
Music Pause/Resume拡張機能のCRXファイルをダウンロード
Music Pause/Resume拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Pause and resume your music with just one key shortcut, anywhere from your desktop. Currently supported services: - Soundcloud - Rdio - Deezer - Google Pay Music - BBC Radio 1 (pop-up window) - Mixcloud Go to chrome://extensions/ to set up the keyboard shortcut you want to use for pausing / resuming your music. Super simple, no icon on your browser, no popup, just one hotkey Your favorite service is not listed? Get in contact! will see what we can do or if you are a developer, go to our github page.
拡張機能の基本情報
名前 | |
ID | hnpodgbofjolhnfeeakhkjfonnhekaim |
公式URL | https://chrome.google.com/webstore/detail/music-pauseresume/hnpodgbofjolhnfeeakhkjfonnhekaim |
説明 | Pause and resume streaming music with a keyboard shortcut |
ファイルサイズ | 19.36 KB |
インストール数 | 15 |
現在のバージョン | 0.1.4 |
最終更新日 | 2015-05-27 |
公開日 | 2015-05-27 |
評価 | 1.00/5 合計 1 レビュー |
開発者 | josepcn |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/josepcn/caesura |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Music Pause\/Resume", "short_name": "caesura", "description": "Pause and resume streaming music with a keyboard shortcut", "version": "0.1.4", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "commands": { "toggle-audio-playback": { "suggested_key": { "default": "Ctrl+Shift+0" }, "description": "Toggle audio playback", "global": true }, "debug": { "suggested_key": { "default": "Ctrl+Shift+9" }, "description": "debug", "global": false } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "common.js", "contentScript.js" ] } ], "icons": { "128": "icons\/icon_key_128.png" }, "background": { "scripts": [ "common.js", "eventPage.js" ], "persistent": false }, "permissions": [ "tabs", "storage", "nativeMessaging" ] } |