YouTube Skip Ads

YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'

什么是YouTube Skip Ads?

YouTube Skip Ads是由admin开发的Chrome扩展程序,该扩展的主要功能是“YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'”。

扩展截图

screenshot

下载YouTube Skip Ads扩展crx文件

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

扩展使用说明

                        YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. This addon auto clicks the 'skip ad button'                    

扩展基本信息

名称 YouTube Skip Ads YouTube Skip Ads
ID jnhhfkebfgdllkmohmfhdmhkfooolbmb
官方URL https://chrome.google.com/webstore/detail/youtube-skip-ads/jnhhfkebfgdllkmohmfhdmhkfooolbmb
简介 YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'
文件大小 12.73 KB
安装次数 3,053
当前版本 1.0.6
更新时间 2022-10-31
上架时间 2022-10-31
评分 5.00/5 共2次评分
开发者 admin
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Skip Ads",
    "short_name": "YouTube Skip Ads",
    "description": "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'",
    "manifest_version": 3,
    "version": "1.0.6",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_yt.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "logob.png"
    }
}