YTPP

YTPP: YouTube Play/Pause without switching tabs

YTPP là gì?

YTPP là một tiện ích mở rộng Chrome được phát triển bởi spidergears, và tính năng chính của nó là "YTPP: YouTube Play/Pause without switching tabs".

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

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

                        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.                    

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

Tên YTPP YTPP
ID onlhipebedljinheklgalifgbolcmndi
URL Chính Thức https://chromewebstore.google.com/detail/ytpp/onlhipebedljinheklgalifgbolcmndi
Mô tả YTPP: YouTube Play/Pause without switching tabs
Kích Thước Tệp 10.16 KB
Số Lần Cài Đặt 23
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2016-11-20
Ngày Phát Hành 2016-11-20
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển spidergears
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}