Youtube Pause

Pause a vídeo on youtube

Youtube Pauseとは何ですか?

Youtube PauseはValter Barrosによって開発されたChromeの拡張機能で、その主な機能は「Pause a vídeo on youtube」です。

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

screenshot

Youtube Pause拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Is a extension to play and pause your youtube vídeos without need change the focus on browser                    

拡張機能の基本情報

名前 Youtube Pause Youtube Pause
ID hkkgahcplbiednmfhllhpgpemgenigdg
公式URL https://chromewebstore.google.com/detail/youtube-pause/hkkgahcplbiednmfhllhpgpemgenigdg
説明 Pause a vídeo on youtube
ファイルサイズ 15.35 KB
インストール数 17
現在のバージョン 1.3.1
最終更新日 2019-04-01
公開日 2019-03-31
評価 4.50/5 合計 8 レビュー
開発者 Valter Barros
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/valterbarros/button-pause-youtube
ヘルプページのURL https://github.com/valterbarros/button-pause-youtube/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Pause",
    "version": "1.3.1",
    "manifest_version": 2,
    "description": "Pause a v\u00eddeo on youtube",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon-pause-32.png",
        "default_title": "Pause youtube video",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "128": "icon-pause-128.png",
        "16": "icon-pause-16.png",
        "64": "icon-pause-64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/**"
            ],
            "js": [
                "js\/contentscript.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/www.youtube.com\/**"
    ],
    "commands": {
        "playPause": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "global": true,
            "description": "Toggle play\/pause"
        },
        "playNext": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "global": true,
            "description": "Play next track"
        },
        "playPrev": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "global": true,
            "description": "Play previous track"
        }
    }
}