YouTube Background Ad Skip Extension

Automatically Skip ads on YouTube. This is not an ad blocker

什么是YouTube Background Ad Skip Extension?

YouTube Background Ad Skip Extension是由Krysp_Coder开发的Chrome扩展程序,该扩展的主要功能是“Automatically Skip ads on YouTube. This is not an ad blocker”。

扩展截图

screenshot

下载YouTube Background Ad Skip Extension扩展crx文件

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

扩展使用说明

                        Automatically skip YouTube ads when the ad is able to be skipped. When an ad has the option to be skipped within 5 seconds the extension will skip the ad for you immediately. This does not block ads or skip ads that do not originally have the option to be skipped.                    

扩展基本信息

名称 YouTube Background Ad Skip Extension YouTube Background Ad Skip Extension
ID ncbifbdnlggnffchafbdiefobpabajkb
官方URL https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb
简介 Automatically Skip ads on YouTube. This is not an ad blocker
文件大小 17.34 KB
安装次数 867
当前版本 0.1.1
更新时间 2018-06-20
上架时间 2018-06-20
评分 3.33/5 共3次评分
开发者 Krysp_Coder
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Background Ad Skip Extension",
    "short_name": "YBASE",
    "version": "0.1.1",
    "description": "Automatically Skip ads on YouTube. This is not an ad blocker",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false,
        "matches": [
            "https:\/\/www.youtube.com?*"
        ]
    },
    "browser_action": {
        "default_icon": "images\/media-skip-forward-xxl.png"
    },
    "icons": {
        "16": "images\/media-skip-forward16.png",
        "32": "images\/media-skip-forward32.png",
        "48": "images\/media-skip-forward48.png",
        "128": "images\/media-skip-forward128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ]
        }
    ]
}