Disable Youtube Shorts Layout

Disables youtube short layout on desktop (not the videos themselves).

Τι είναι το Disable Youtube Shorts Layout;

Το Disable Youtube Shorts Layout είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον tukars, και η κύρια λειτουργία του είναι "Disables youtube short layout on desktop (not the videos themselves).".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Disable Youtube Shorts Layout

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

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

                        This extension disables the shorts layout on desktop and instead allows for the default playback to be used. Works how youtube used to work.

*Please ensure you refresh any YouTube tabs beforehand in order for this to work*

NOTE: If you are using other extensions that modify the youtube experience, they may cause unexpected behaviour and interference with how this extension works. Please ensure you disable any features from other extensions that interfere with how shorts are displayed to get the intended experience.
* "Enhancer for YouTube™" extension by www.mrfdev.com: Disable "Convert Shorts" option.

Source Code:
https://github.com/probablytukars/Disable-Youtube-Shorts                    

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

Όνομα Disable Youtube Shorts Layout Disable Youtube Shorts Layout
ID lgdgebkjhcbilocmnfkiiicfggjlbdfg
Επίσημο URL https://chrome.google.com/webstore/detail/disable-youtube-shorts-la/lgdgebkjhcbilocmnfkiiicfggjlbdfg
Περιγραφή Disables youtube short layout on desktop (not the videos themselves).
Μέγεθος Αρχείου 4.03 KB
Αριθμός Εγκαταστάσεων 1,269
Τρέχουσα Έκδοση 2.5
Τελευταία Ενημέρωση 2023-07-03
Ημερομηνία Δημοσίευσης 2022-04-29
Αξιολόγηση 4.47/5 Συνολικά 19 Αξιολογήσεις
Προγραμματιστής tukars
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Disable Youtube Shorts Layout",
    "description": "Disables youtube short layout on desktop (not the videos themselves).",
    "version": "2.5",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ]
}