YouTube Toggle Fullscreen

Click to go fullscreen (+ HD); click again to exit fullscreen.

YouTube Toggle Fullscreen là gì?

YouTube Toggle Fullscreen là một tiện ích mở rộng Chrome được phát triển bởi Rob W, và tính năng chính của nó là "Click to go fullscreen (+ HD); click again to exit fullscreen.".

Ả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 Toggle Fullscreen

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

                        September 2017: Updated for new layout.

Adds an extension button that expands YouTube videos to the full window and activates HD quality (optional, see options page).

The functionality can also be activated with a keyboard shortcut (see options page).

The extension is efficient, does not require unnecessary permissions and works directly on YouTube with minimal changes (so no surprises!).                    

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

Tên YouTube Toggle Fullscreen YouTube Toggle Fullscreen
ID gjlgjoioabomkkoefbhophippopiiafa
URL Chính Thức https://chromewebstore.google.com/detail/youtube-toggle-fullscreen/gjlgjoioabomkkoefbhophippopiiafa
Mô tả Click to go fullscreen (+ HD); click again to exit fullscreen.
Kích Thước Tệp 18.55 KB
Số Lần Cài Đặt 198
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2017-09-12
Ngày Phát Hành 2017-09-12
Đánh Giá 4.67/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Rob W
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://robwu.nl
URL Trang Chính Sách Bảo Mật https://robwu.nl/privacy/cws
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Toggle Fullscreen",
    "description": "Click to go fullscreen (+ HD); click again to exit fullscreen.",
    "version": "1.3",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "js": [
                "contentscript.js"
            ],
            "css": [
                "youtube-fullscreen.css"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/www.youtube.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "Toggle fullscreen"
    },
    "commands": {
        "toggle-fullscreen": {
            "description": "Toggle fullscreen on YouTube"
        }
    },
    "minimum_chrome_version": "46",
    "options_page": "options.html"
}