Disable Youtube Shorts Layout

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

Disable Youtube Shorts Layout क्या है?

Disable Youtube Shorts Layout tukars द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Disables youtube short layout on desktop (not the videos themselves)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Disable Youtube Shorts Layout एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
    ]
}