No Shorts

Redirects YouTube Shorts to YouTube videos.

No Shorts là gì?

No Shorts là một tiện ích mở rộng Chrome được phát triển bởi Wock, và tính năng chính của nó là "Redirects YouTube Shorts to YouTube videos.".

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

Tải xuống các tệp mở rộng No 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

                        An extension that redirects YouTube short player urls to the normal YouTube player.
I created this extension for my own use, as being unable to navigate short videos irritated me, and decided to publish it.

It does one job, and only one job.
The only permission it needs is tabs, to handle YouTube onsite redirects.                    

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

Tên No Shorts No Shorts
ID gepjlgfjbeimidbimhjljdncopgelebl
URL Chính Thức https://chromewebstore.google.com/detail/no-shorts/gepjlgfjbeimidbimhjljdncopgelebl
Mô tả Redirects YouTube Shorts to YouTube videos.
Kích Thước Tệp 12.74 KB
Số Lần Cài Đặt 117
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-10-27
Ngày Phát Hành 2022-10-26
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Wock
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "No Shorts",
    "version": "1.0",
    "description": "Redirects YouTube Shorts to YouTube videos.",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    }
}