Tube Scale

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

Tube Scale क्या है?

Tube Scale https://jameygleason.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tube Scale एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        ]
    }
}