Tube Scale
Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!
Was ist Tube Scale?
Tube Scale ist eine Chrome-Erweiterung, die von https://jameygleason.com entwickelt wurde, und ihr Hauptmerkmal ist "Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!".
Erweiterungsscreenshots
Tube Scale-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tube Scale-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Tube Scale |
ID | knaccnglpjaienjodleaolalepppfloc |
Offizielle URL | https://chromewebstore.google.com/detail/tube-scale/knaccnglpjaienjodleaolalepppfloc |
Beschreibung | Scale the YouTube player to fill the browser window in one click. Advanced cinema mode! |
Dateigröße | 42.49 KB |
Installationsanzahl | 13 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2018-12-17 |
Veröffentlichungsdatum | 2018-12-16 |
Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://jameygleason.com |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } } |