YTPP

YTPP: YouTube Play/Pause without switching tabs

YTPPとは何ですか?

YTPPはspidergearsによって開発されたChromeの拡張機能で、その主な機能は「YTPP: YouTube Play/Pause without switching tabs」です。

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

screenshot

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

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

拡張機能の使用方法

                        YTPP: YouTube Play/Pause
Extension lets user play/pause youtube without having to switch tabs. Clicking the extension button toggles playback state for all open youtube tabs.                    

拡張機能の基本情報

名前 YTPP YTPP
ID onlhipebedljinheklgalifgbolcmndi
公式URL https://chromewebstore.google.com/detail/ytpp/onlhipebedljinheklgalifgbolcmndi
説明 YTPP: YouTube Play/Pause without switching tabs
ファイルサイズ 10.16 KB
インストール数 23
現在のバージョン 0.1
最終更新日 2016-11-20
公開日 2016-11-20
評価 3.00/5 合計 2 レビュー
開発者 spidergears
Eメール [email protected]
支払い方法 free
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YTPP",
    "short_name": "YTPP",
    "version": "0.1",
    "description": "YTPP: YouTube Play\/Pause without switching tabs",
    "icons": {
        "128": "icon.png",
        "48": "icon_48.png",
        "16": "icon_16.png"
    },
    "author": {
        "name": "spidergears",
        "twitter_handle": "spider_gears",
        "github": "http:\/\/github.com\/spidergears"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "YTPP"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "ytpp_background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "ytpp_content_script.js"
            ]
        }
    ]
}