Video Blocker for YouTube™

Block videos, comments, tags, channels and much more!

Video Blocker for YouTube™ là gì?

Video Blocker for YouTube™ là một tiện ích mở rộng Chrome được phát triển bởi edoan, và tính năng chính của nó là "Block videos, comments, tags, channels and much more!".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Video Blocker for YouTube™

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

                        With this extension you can block any type of content in Youtube™ that bothers you.

Features:
• block channel, videos, posts and comments.
• you can block videos that the title match words or phrases of your choice (regex supported).
• block comments that contain certain phrases or words (regex supported).
• block videos by link, ID, tags*, description*, categories*.
• and many more!

* Note:
Blocking videos by tags or categories requires a Google API Key to get tags from the videos. Within the extension you can see instructions on how to get one.                    

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

Tên Video Blocker for YouTube™ Video Blocker for YouTube™
ID nedcanggplmbbgmlpcjiafgjcpdimpea
URL Chính Thức https://chromewebstore.google.com/detail/video-blocker-for-youtube/nedcanggplmbbgmlpcjiafgjcpdimpea
Mô tả Block videos, comments, tags, channels and much more!
Kích Thước Tệp 621 KB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 4.0.2
Cập Nhật Lần Cuối 2023-12-15
Ngày Phát Hành 2020-12-23
Đánh Giá 4.42/5 Tổng số 81 Đánh Giá
Nhà Phát Triển edoan
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_ExtName__",
    "version": "4.0.2",
    "manifest_version": 3,
    "description": "__MSG_AppDescription__",
    "permissions": [
        "storage",
        "contextMenus",
        "unlimitedStorage",
        "alarms"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "optional_permissions": [
        "downloads"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "libs\/jquery-3.6.0.min.js",
                "libs\/lodash.min.js",
                "libs\/mutation-summary.js",
                "libs\/moment.min.js",
                "js\/managers\/message-manager.js",
                "js\/managers\/storage-manager.js",
                "js\/utilities\/observer.js",
                "js\/utilities\/constants.js",
                "js\/utilities\/utils.js",
                "js\/managers\/api-manager.js",
                "js\/utilities\/password-modal.js",
                "js\/contents\/content.js",
                "js\/contents\/videos\/video.js",
                "js\/contents\/videos\/mobile-video.js",
                "js\/contents\/videos\/shorts.js",
                "js\/contents\/comments\/comment.js",
                "js\/contents\/comments\/mobile-comment.js",
                "js\/contents\/post.js",
                "js\/contents\/playlist.js",
                "js\/contents\/videos\/watch-video.js",
                "js\/contents\/videos\/miniplayer.js",
                "js\/contents\/dropdown.js",
                "js\/contents\/channel-renderer.js",
                "js\/contents\/videos\/preview-player.js",
                "js\/finders\/content-finder.js",
                "js\/finders\/player-finder.js",
                "js\/managers\/shorts-manager.js",
                "js\/overlays\/block-overlay.js",
                "js\/overlays\/watch-video-overlay.js",
                "js\/utilities\/matcher.js",
                "js\/utilities\/modifiers.js",
                "js\/utilities\/keywords.js",
                "js\/content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "resources": [
                "https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/4.7.0\/css\/font-awesome.min.css",
                "css\/content-script.css",
                "images\/icon-128.png"
            ]
        }
    ],
    "action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "48": "images\/icon-48.png",
            "32": "images\/icon-128.png"
        }
    },
    "options_page": "html\/options.html",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    }
}