Youtube playback control

Control all youtube tabs from any tab any window.

什麼是Youtube playback control?

Youtube playback control是由Ankit Shah開發的Chrome擴展程式,該擴展的主要功能是“Control all youtube tabs from any tab any window.”。

擴展截圖

screenshot

下載Youtube playback control擴展crx文件

下載Youtube playback control擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This is a chrome extension which will allow you to play, pause or jump to next youtube videos running across all tabs in all windows. Press the row containing title and it toggles the state of tab playing youtube video. You need to reload tabs once after installing the extension.

Now also supports jumping to particular tab and closing the tab.

The extension is open source so feel free to add any issues or pull requests on https://github.com/shahankit/youtube-playback-control.                    

擴展基本資訊

名稱 Youtube playback control Youtube playback control
ID okbcoijdeebocmahlanbfemnckjonfnh
官方網址 https://chrome.google.com/webstore/detail/youtube-playback-control/okbcoijdeebocmahlanbfemnckjonfnh
簡介 Control all youtube tabs from any tab any window.
檔案大小 46.5 KB
安裝次數 582
目前版本 0.1.4
更新時間 2017-09-11
上架時間 2017-09-11
評分 4.41/5 共 27 次評分
開發者 Ankit Shah
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube playback control",
    "version": "0.1.4",
    "description": "Control all youtube tabs from any tab any window.",
    "browser_action": {
        "default_icon": {
            "19": "assets\/icon.png",
            "38": "assets\/[email protected]"
        },
        "default_popup": "views\/popup\/index.html",
        "default_title": "Youtube Tabs"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}