Redirect Shorts

Redirects youtube shorts to the normal player

Redirect Shorts là gì?

Redirect Shorts là một tiện ích mở rộng Chrome được phát triển bởi manas.bejj, và tính năng chính của nó là "Redirects youtube shorts to the normal player".

Ả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 Redirect Shorts

Tải xuống các tệp mở rộng Redirect Shorts 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 replaces the "/shorts/" from the url with "watch?v=" to play your shorts video on the normal player which is more user friendly on a computer.                    

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

Tên Redirect Shorts Redirect Shorts
ID lncinpfgcgmphkebnbfpogkgiaadphpi
URL Chính Thức https://chromewebstore.google.com/detail/redirect-shorts/lncinpfgcgmphkebnbfpogkgiaadphpi
Mô tả Redirects youtube shorts to the normal player
Kích Thước Tệp 32.03 KB
Số Lần Cài Đặt 2,945
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-03-03
Ngày Phát Hành 2022-03-03
Đánh Giá 4.32/5 Tổng số 28 Đánh Giá
Nhà Phát Triển manas.bejj
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Redirect Shorts",
    "version": "1.0",
    "manifest_version": 3,
    "description": "Redirects youtube shorts to the normal player",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png",
        "256": "256.png"
    },
    "host_permissions": [
        "*:\/\/www.youtube.com\/shorts\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "yt.js"
            ],
            "run_at": "document_start"
        }
    ]
}