Tube Scale

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

Wat is Tube Scale?

Tube Scale is een Chrome-extensie ontwikkeld door https://jameygleason.com, en de belangrijkste functie is "Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Tube Scale

Download Tube Scale-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Tube Scale Tube Scale
ID knaccnglpjaienjodleaolalepppfloc
Officiële URL https://chromewebstore.google.com/detail/tube-scale/knaccnglpjaienjodleaolalepppfloc
Beschrijving Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!
Bestandsgrootte 42.49 KB
Aantal Installaties 13
Huidige Versie 1.0.2
Laatst Bijgewerkt 2018-12-17
Publicatiedatum 2018-12-16
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://jameygleason.com
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}