YouTube NoAds!

The add-on blocks ads presented in videos on youtube.

什么是YouTube NoAds!?

YouTube NoAds!是由info开发的Chrome扩展程序,该扩展的主要功能是“The add-on blocks ads presented in videos on youtube.”。

扩展截图

screenshot

下载YouTube NoAds!扩展crx文件

下载YouTube NoAds!扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The add-on blocks ads presented in videos on youtube. The ad blocker consists in automatically selecting the 'skip ads' button when it becomes active.                    

扩展基本信息

名称 YouTube NoAds! YouTube NoAds!
ID plohhfnpbopkgjhbaljjepioomefkaog
官方URL https://chrome.google.com/webstore/detail/youtube-noads/plohhfnpbopkgjhbaljjepioomefkaog
简介 The add-on blocks ads presented in videos on youtube.
文件大小 166 KB
安装次数 761
当前版本 2.0.0
更新时间 2022-11-30
上架时间 2022-11-30
评分 4.50/5 共2次评分
开发者 info
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube NoAds!",
    "description": "The add-on blocks ads presented in videos on youtube.",
    "manifest_version": 3,
    "version": "2.0.0",
    "background": {
        "service_worker": "src\/service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/content_scripts.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "alarms",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "resource\/youtube(3).png"
    }
}