FadBlock: Friendly Adblock for Youtube™

A fast, lightweight, and undetectable YouTube Ads Blocker for Chrome.

FadBlock: Friendly Adblock for Youtube™ là gì?

FadBlock: Friendly Adblock for Youtube™ là một tiện ích mở rộng Chrome được phát triển bởi synthchatgpt, và tính năng chính của nó là "A fast, lightweight, and undetectable YouTube Ads Blocker for Chrome.".

Ả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 FadBlock: Friendly Adblock for Youtube™

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

                        ----------------------------------------------------------
UPDATE: If you were an user before the update and the extension got disabled, that's normal behavior by Google, it's so an extension can't silently escalate its privileges with an update, in this case FadBlock accessing extensionpay.com for those who want to contribute, nothing else. Nothing to be scared about. You can read the new permissions to make sure nobody's pulling any funny business.

NOTE: And for those who are alarmed about the "Read and change your data" permission, it's not accessing any of your data, it's just to access the YouTube and YouTube Music (new feature!) tabs as it was doing before. You can read the documentation to make sure that's the case,

This is the permission required for an extension to work with the browser's tabs. This includes viewing the URL of an open tab. The permission does not give access to your actual browser history itself, but technically any extension with this permission could monitor tab URLs as they changed and construct its own history, so that's why the warning is phrased that way. If an extension asks for permission to access the actual browser history data, the warning should read "Read and change your BROWSING HISTORY...".

https://developer.chrome.com/docs/extensions/mv3/permission_warnings/

You can google this and find out, no need to trust the developer.
----------------------------------------------------------

This blocker is designed to monitor advertisements, automatically seek the ads and skip them on YouTube and YouTube Music as well. It's important to note that this doesn't classify as traditional ad blocking, as the ad content is technically "loaded".

Nevertheless, the extension's underlying logic enables it to fast-forward through the ad content to its conclusion. The entire process is optimized to occur within an extremely brief timeframe, typically <=50 milliseconds, ensuring a smooth and uninterrupted user experience.

FEATURES:

This extension effectively eliminates all categories of YouTube and YouTube Music advertisements:

Category 1: Ads visible on the homepage.

Category 2: Ads overlaid atop the suggested video list.

Category 3: Ads displayed below the video description.

> Starting on April 6th, 2023, the “Overlay ads” ad format will no longer appear on YouTube to help improve the viewer experience and shift engagement to higher performing ad formats on desktop and mobile devices. Overlay ads are a legacy ad format that only served on desktop and are disruptive for viewers.

Category 4: Skippable 5-second-must-be-watched video ads, which may be positioned at the video's start, midway, or at the end.

Category 5: Ads similar to Category 4, but with two consecutive video ads instead of one.

Category 6: Inescapable 10-second video ads, which must be watched.

Install now and experience YouTube and YouTube Music the way it was meant to be—ad-free!                    

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

Tên FadBlock: Friendly Adblock for Youtube™ FadBlock: Friendly Adblock for Youtube™
ID mdadjjfmjhfcibgfhfjbaiiljpllkbfc
URL Chính Thức https://chromewebstore.google.com/detail/fadblock-friendly-adblock/mdadjjfmjhfcibgfhfjbaiiljpllkbfc
Mô tả A fast, lightweight, and undetectable YouTube Ads Blocker for Chrome.
Kích Thước Tệp 119 KB
Số Lần Cài Đặt 376,932
Phiên Bản Hiện Tại 2.7
Cập Nhật Lần Cuối 2024-01-24
Ngày Phát Hành 2023-10-17
Đánh Giá 3.33/5 Tổng số 1015 Đánh Giá
Nhà Phát Triển synthchatgpt
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://piyushraj.org/
URL Trang Chính Sách Bảo Mật https://docs.google.com/document/d/1kYu5NXU5NJyxZLhf2cJyrd68IvMr7gb4wggqSAj1-cI/edit?usp=sharing
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "FadBlock: Friendly Adblock for Youtube\u2122",
    "version": "2.7",
    "description": "A fast, lightweight, and undetectable YouTube Ads Blocker for Chrome.",
    "icons": {
        "16": "assets\/icons\/icon-16x16.png",
        "48": "assets\/icons\/icon-48x48.png",
        "128": "assets\/icons\/icon-120x120.png"
    },
    "action": {
        "default_icon": "assets\/logo.png",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*",
        "https:\/\/www.youtube.com\/*",
        ""
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/ExtPay.js",
                "js\/content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "js": [
                "js\/ExtPay.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/stt.js"
            ]
        }
    ]
}