Tube Scale

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

Τι είναι το Tube Scale;

Το Tube Scale είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://jameygleason.com, και η κύρια λειτουργία του είναι "Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Tube Scale

Λήψη αρχείων επέκτασης 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"
        ]
    }
}