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
公式URL 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"
        ]
    }
}