YouTube Full Windowed

This extension enables the ability to toggle a full windowed mode for any YouTube video (excluding embedded ones).

Τι είναι το YouTube Full Windowed;

Το YouTube Full Windowed είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον eklundchristopher, και η κύρια λειτουργία του είναι "This extension enables the ability to toggle a full windowed mode for any YouTube video (excluding embedded ones).".

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

screenshot
screenshot

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

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

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

                        === Update 10/03/2019 ===
This extension is no longer maintained as I have decided to switch from Google Chrome to Mozilla Firefox. Should anyone want to continue the development of the extension, the full source code is available on my GitHub and will remain there. Click on the 'Website' link to find it.

Sorry for any inconvenience and thank you for using the extension thus far!

=== Description ===
Sometimes you find yourself wanting a middle ground between the default YouTube video sizes and fullscreen — This extension offers just that. It adds a button within the YouTube player itself (and in the browser toolbar) that allows you to toggle a full windowed mode for your videos.

Disclaimer! This extension was built around the new YouTube layout (https://www.youtube.com/new) and does not promise full functionality on the previous layout.

=== Changelog ===
# v1.1.0
Improved initial load detection, fixed an issue with the Chrome extension icon not working properly and made sure the up-next functionality works as intended upon finishing a video.

# v1.0.3
Improved the YouTube navigation detection in order to make sure the extension is loaded on all video pages without having to refresh.

# v1.0.2
Only loads the extension at the watch route, rather than all of YouTube

# v1.0.1
Attempt at solving an issue where the extension won't load at every refresh                    

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

Όνομα YouTube Full Windowed YouTube Full Windowed
ID hcmgmocihecidijbefmiecboedfegcgk
Επίσημο URL https://chromewebstore.google.com/detail/youtube-full-windowed/hcmgmocihecidijbefmiecboedfegcgk
Περιγραφή This extension enables the ability to toggle a full windowed mode for any YouTube video (excluding embedded ones).
Μέγεθος Αρχείου 13.09 KB
Αριθμός Εγκαταστάσεων 872
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2019-03-10
Ημερομηνία Δημοσίευσης 2019-03-10
Αξιολόγηση 4.50/5 Συνολικά 14 Αξιολογήσεις
Προγραμματιστής eklundchristopher
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/eklundchristopher/YouTube-Full-Windowed.chrome-extension
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Full Windowed",
    "short_name": "YTFullWindow",
    "description": "This extension enables the ability to toggle a full windowed mode for any YouTube video (excluding embedded ones).",
    "version": "1.1.0",
    "browser_action": {
        "default_icon": "icons\/state-0.png"
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "Christopher Eklund",
    "homepage_url": "https:\/\/github.com\/eklundchristopher\/YouTube-Full-Windowed.chrome-extension",
    "permissions": [
        "activeTab",
        "https:\/\/www.youtube.com\/watch*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "assets\/extension.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "assets\/embed.css"
            ],
            "js": [
                "assets\/embed.js"
            ]
        }
    ]
}