YouTubePlayer

Control YouTube videos across all tabs and windows from extension bar

YouTubePlayer là gì?

YouTubePlayer là một tiện ích mở rộng Chrome được phát triển bởi Akshaya Kumar, và tính năng chính của nó là "Control YouTube videos across all tabs and windows from extension bar".

Ả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 YouTubePlayer

Tải xuống các tệp mở rộng YouTubePlayer 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 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.                    

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

Tên YouTubePlayer YouTubePlayer
ID djfdkfcebbbehfmibkkhneofknamohoi
URL Chính Thức https://chromewebstore.google.com/detail/youtubeplayer/djfdkfcebbbehfmibkkhneofknamohoi
Mô tả Control YouTube videos across all tabs and windows from extension bar
Kích Thước Tệp 100 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2019-08-04
Ngày Phát Hành 2019-08-03
Nhà Phát Triển Akshaya Kumar
Email [email protected]
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": "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"
    ]
}