Tube Scale

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

什麼是Tube Scale?

Tube Scale是由https://jameygleason.com開發的Chrome擴展程式,該擴展的主要功能是“Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!”。

擴展截圖

screenshot

下載Tube Scale擴展crx文件

下載Tube Scale擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Tube Scale Tube Scale
ID knaccnglpjaienjodleaolalepppfloc
官方網址 https://chromewebstore.google.com/detail/tube-scale/knaccnglpjaienjodleaolalepppfloc
簡介 Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!
檔案大小 42.49 KB
安裝次數 13
目前版本 1.0.2
更新時間 2018-12-17
上架時間 2018-12-16
評分 1.00/5 共 1 次評分
開發者 https://jameygleason.com
付費類型 free
支援的語言 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"
        ]
    }
}