YouTube Inline Fullscreen

Make the most out of your screen space with a single click!

Τι είναι το YouTube Inline Fullscreen;

Το YouTube Inline Fullscreen είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον doubleyoustew, και η κύρια λειτουργία του είναι "Make the most out of your screen space with a single click!".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Inline Fullscreen

Λήψη αρχείων επέκτασης YouTube Inline Fullscreen σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension offers a windowed fullscreen mode for YouTube. You can toggle it using the extension icon, the dedicated button inside the YouTube player or by using the shortcut by pressing "w".

You can now also scroll down to the comments and related videos. You can toggle the search bar by pressing "s" while you are in fullscreen mode.

Make YouTube videos responsive. No more wasted space around the content you enjoy.

*Note*: Reload YouTube after installing the extension to have the button appear in the player.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα YouTube Inline Fullscreen YouTube Inline Fullscreen
ID mfpkbigjnlcgngkdbmnchfnenfmibkig
Επίσημο URL https://chromewebstore.google.com/detail/youtube-inline-fullscreen/mfpkbigjnlcgngkdbmnchfnenfmibkig
Περιγραφή Make the most out of your screen space with a single click!
Μέγεθος Αρχείου 21.52 KB
Αριθμός Εγκαταστάσεων 2,219
Τρέχουσα Έκδοση 1.2.7
Τελευταία Ενημέρωση 2023-09-27
Ημερομηνία Δημοσίευσης 2020-01-23
Αξιολόγηση 4.17/5 Συνολικά 36 Αξιολογήσεις
Προγραμματιστής doubleyoustew
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Inline Fullscreen",
    "version": "1.2.7",
    "description": "Make the most out of your screen space with a single click!",
    "icons": {
        "16": "icons\/fullscreen-16.png",
        "48": "icons\/fullscreen-48.png",
        "128": "icons\/fullscreen-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/youtube.com\/*",
        "*:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "ytif_style.css"
            ],
            "js": [
                "ytif_content_script.js"
            ]
        }
    ],
    "action": {
        "default_name": "Fullscreen!",
        "default_icon": "icons\/fullscreen-48.png"
    },
    "manifest_version": 3
}