Stop the Music

Pauses all playing YouTube videos.

Stop the Musicとは何ですか?

Stop the MusicはRoxton Labsによって開発されたChromeの拡張機能で、その主な機能は「Pauses all playing YouTube videos.」です。

拡張機能のスクリーンショット

screenshot

Stop the Music拡張機能のCRXファイルをダウンロード

Stop the Music拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Pauses all playing YouTube videos, even if Chrome is in the background. 

* Press once to pause, press again to resume (will only play the most recent video). 
* Right click to set keyboard shortcut (supports media keys).                    

拡張機能の基本情報

名前 Stop the Music Stop the Music
ID mmkciobbhadaepjnfjllinlemhcmiihc
公式URL https://chromewebstore.google.com/detail/stop-the-music/mmkciobbhadaepjnfjllinlemhcmiihc
説明 Pauses all playing YouTube videos.
ファイルサイズ 10.84 KB
インストール数 213
現在のバージョン 1.0
最終更新日 2015-11-27
公開日 2015-11-27
評価 5.00/5 合計 7 レビュー
開発者 Roxton Labs
支払い方法 free
拡張機能のウェブサイト http://www.roxtonlabs.blogspot.com
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stop the Music",
    "description": "Pauses all playing YouTube videos.",
    "version": "1.0",
    "author": "Roxton Labs",
    "browser_action": {
        "default_icon": "stopIcon.png",
        "default_title": "Click to pause\/resume background YouTube Videos.\nRight-click to set keyboard shortcut."
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "commands": {
        "stop-the-music": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Pauses\/resumes background YouTube videos.",
            "global": true
        }
    }
}