No YouTube Shorts

Removes all Shorts from YouTube

No YouTube Shorts là gì?

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

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

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

                        Tired of the YouTube Shorts?
No problem, this extension has your back and removes them from the YouTube page!

New in version 0.6.2:
- Bugfixes

Bugs? Improvement ideas? Feel free to message me.                    

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

Tên No YouTube Shorts No YouTube Shorts
ID hjfkenebldkfgibelglepinlabpjfbll
URL Chính Thức https://chromewebstore.google.com/detail/no-youtube-shorts/hjfkenebldkfgibelglepinlabpjfbll
Mô tả Removes all Shorts from YouTube
Kích Thước Tệp 37.34 KB
Số Lần Cài Đặt 60,000
Phiên Bản Hiện Tại 0.6.2
Cập Nhật Lần Cuối 2023-09-27
Ngày Phát Hành 2022-03-03
Đánh Giá 4.31/5 Tổng số 240 Đánh Giá
Nhà Phát Triển Ben
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",
    "name": "No YouTube Shorts",
    "description": "Removes all Shorts from YouTube",
    "version": "0.6.2",
    "action": {
        "default_popup": "popup.html",
        "default_title": "No YouTube Shorts"
    },
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "declarativeContent",
        "storage",
        "tabs",
        "management"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "no-youtube-shorts-content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "no-youtube-shorts-background-script.js"
    },
    "icons": {
        "48": "assets\/img\/logo48.png",
        "128": "assets\/img\/logo128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/no-youtube-shorts.css"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}