YouTubePlayer

Control YouTube videos across all tabs and windows from extension bar

YouTubePlayerとは何ですか?

YouTubePlayerはAkshaya Kumarによって開発されたChromeの拡張機能で、その主な機能は「Control YouTube videos across all tabs and windows from extension bar」です。

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

screenshot

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

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

拡張機能の使用方法

                        This Chrome extension allows to toggle youtube videos that are playing across tabs and windows from the extension. It can skip the ads that are skippable without any time wait.                    

拡張機能の基本情報

名前 YouTubePlayer YouTubePlayer
ID djfdkfcebbbehfmibkkhneofknamohoi
公式URL https://chromewebstore.google.com/detail/youtubeplayer/djfdkfcebbbehfmibkkhneofknamohoi
説明 Control YouTube videos across all tabs and windows from extension bar
ファイルサイズ 100 KB
インストール数 31
現在のバージョン 1.0.0
最終更新日 2019-08-04
公開日 2019-08-03
開発者 Akshaya Kumar
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTubePlayer",
    "version": "1.0.0",
    "description": "Control YouTube videos across all tabs and windows from extension bar",
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs"
    ]
}