Youtube playback control

Control all youtube tabs from any tab any window.

Youtube playback control là gì?

Youtube playback control là một tiện ích mở rộng Chrome được phát triển bởi Ankit Shah, và tính năng chính của nó là "Control all youtube tabs from any tab any window.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube playback control

Tải xuống các tệp mở rộng Youtube playback control dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Youtube playback control Youtube playback control
ID okbcoijdeebocmahlanbfemnckjonfnh
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-playback-control/okbcoijdeebocmahlanbfemnckjonfnh
Mô tả Control all youtube tabs from any tab any window.
Kích Thước Tệp 46.5 KB
Số Lần Cài Đặt 582
Phiên Bản Hiện Tại 0.1.4
Cập Nhật Lần Cuối 2017-09-11
Ngày Phát Hành 2017-09-11
Đánh Giá 4.41/5 Tổng số 27 Đánh Giá
Nhà Phát Triển Ankit Shah
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}