Tube Scale

Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!

Tube Scale là gì?

Tube Scale là một tiện ích mở rộng Chrome được phát triển bởi https://jameygleason.com, và tính năng chính của nó là "Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!".

Ả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 Tube Scale

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

                        Similar to theater mode, but better! Make the YouTube player fill the browser window.

When active, it removes the header bar and assures that if you are scrolled to the top of the screen, you will have nothing but video content in your browser window.

Save yourself the trouble of going "full" full-screen so you can easily navigate between tabs and other programs with ease!

This is an open source project. If you have ideas on how to make it better, become a contributor!

https://github.com/jameygleason/tube_scale                    

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

Tên Tube Scale Tube Scale
ID knaccnglpjaienjodleaolalepppfloc
URL Chính Thức https://chromewebstore.google.com/detail/tube-scale/knaccnglpjaienjodleaolalepppfloc
Mô tả Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!
Kích Thước Tệp 42.49 KB
Số Lần Cài Đặt 13
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2018-12-17
Ngày Phát Hành 2018-12-16
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://jameygleason.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tube Scale",
    "description": "Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!",
    "version": "1.0.2",
    "icons": {
        "128": "assets\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "assets\/icon.png",
        "\/\/": "default_popup colon popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}