AdBlocker for YouTube™

Prevent YouTube page, HTML5 player, and Flash player from displaying advertisements and banners

AdBlocker for YouTube™ là gì?

AdBlocker for YouTube™ là một tiện ích mở rộng Chrome được phát triển bởi tlintspr, và tính năng chính của nó là "Prevent YouTube page, HTML5 player, and Flash player from displaying advertisements and banners".

Ả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 AdBlocker for YouTube™

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

                        This is a browser extension to remove banner and display ads from the YouTube website and embed advertisements from YouTube's HTML5 and Flash players. Please note that is not a general-purpose adblocker. This extension only removes advertisements on YouTube web pages.

Compare to an AdBlocker, this extension is very lightweight in terms of memory and resource usage. If you have a slow computer and you would like to ads to be gone, use this extension.

Technical notes:
The observer of this extension only works when you have at least one YT web page. Also, it only has two regular expression rules to improve the performance and prevent the observer from slow down your browser (compare it with hundreds of rules a general-purpose adblocker needs to install to operate).

Permissions Explained:
Although this extension only works on YT pages, it still requires all "hostnames" permission. This is a must-have since the origin of the advertisement could vary by your location (localized hostnames).                    

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

Tên AdBlocker for YouTube™ AdBlocker for YouTube™
ID kpjdlhnmjhjnbeigfilbaiklikbopbca
URL Chính Thức https://chromewebstore.google.com/detail/adblocker-for-youtube/kpjdlhnmjhjnbeigfilbaiklikbopbca
Mô tả Prevent YouTube page, HTML5 player, and Flash player from displaying advertisements and banners
Kích Thước Tệp 99.87 KB
Số Lần Cài Đặt 2,487
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2021-09-14
Ngày Phát Hành 2018-12-08
Đánh Giá 4.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển tlintspr
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://add0n.com/youtube-tools.html
URL Trang Trợ Giúp http://add0n.com/youtube-tools.html
Ngôn Ngữ Được Hỗ Trợ de,en,fr,nl,da,et,it,hu,fi,cs,el,bg,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AdBlocker for YouTube\u2122",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "0.3.0",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "background": {
        "service_worker": "worker.js"
    },
    "browser_action": [],
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "data\/inject\/inject.js"
            ],
            "css": [
                "data\/inject\/inject.css"
            ]
        }
    ],
    "homepage_url": "https:\/\/add0n.com\/youtube-tools.html?from=adblocker",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    }
}