Disable Youtube Shorts Layout

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

Disable Youtube Shorts Layout là gì?

Disable Youtube Shorts Layout là một tiện ích mở rộng Chrome được phát triển bởi tukars, và tính năng chính của nó là "Disables youtube short layout on desktop (not the videos themselves).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Disable Youtube Shorts Layout

Tải xuống các tệp mở rộng Disable Youtube Shorts Layout dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Disable Youtube Shorts Layout Disable Youtube Shorts Layout
ID lgdgebkjhcbilocmnfkiiicfggjlbdfg
URL Chính Thức https://chrome.google.com/webstore/detail/disable-youtube-shorts-la/lgdgebkjhcbilocmnfkiiicfggjlbdfg
Mô tả Disables youtube short layout on desktop (not the videos themselves).
Kích Thước Tệp 4.03 KB
Số Lần Cài Đặt 1,269
Phiên Bản Hiện Tại 2.5
Cập Nhật Lần Cuối 2023-07-03
Ngày Phát Hành 2022-04-29
Đánh Giá 4.47/5 Tổng số 19 Đánh Giá
Nhà Phát Triển tukars
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}