Tube Scale
Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!
Qu'est-ce que Tube Scale ?
Tube Scale est une extension Chrome développée par https://jameygleason.com, et sa fonction principale est "Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tube Scale
Téléchargez les fichiers d'extension Tube Scale au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Tube Scale |
ID | knaccnglpjaienjodleaolalepppfloc |
URL Officiel | https://chromewebstore.google.com/detail/tube-scale/knaccnglpjaienjodleaolalepppfloc |
Description | Scale the YouTube player to fill the browser window in one click. Advanced cinema mode! |
Taille du Fichier | 42.49 KB |
Nombre d'Installations | 13 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2018-12-17 |
Date de Publication | 2018-12-16 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | https://jameygleason.com |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } } |