Disable Youtube Shorts Layout

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

什么是Disable Youtube Shorts Layout?

Disable Youtube Shorts Layout是由tukars开发的Chrome扩展程序,该扩展的主要功能是“Disables youtube short layout on desktop (not the videos themselves).”。

扩展截图

screenshot

下载Disable Youtube Shorts Layout扩展crx文件

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