AdSkipper

This extension will skip youtube ads.

什么是AdSkipper?

AdSkipper是由Abhishek Meharia开发的Chrome扩展程序,该扩展的主要功能是“This extension will skip youtube ads.”。

扩展截图

screenshot

下载AdSkipper扩展crx文件

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

扩展使用说明

                        AdSkipper for Youtube™ is a content filtering and ad blocking browser extension which blocks ads on Youtube™.

Automatically clicks 'Skip Ad' buttons for you.

It doesn't block ads, it just clicks close button and skip ad for you automatically. Useful if you are listening to music in office areas or 
if you are bit lazy to press that button.                    

扩展基本信息

名称 AdSkipper AdSkipper
ID paeoelngbckenlidinleldbemhkdiphi
官方URL https://chromewebstore.google.com/detail/adskipper/paeoelngbckenlidinleldbemhkdiphi
简介 This extension will skip youtube ads.
文件大小 59.06 KB
安装次数 2,555
当前版本 0.7
更新时间 2021-06-27
上架时间 2019-08-14
评分 4.50/5 共8次评分
开发者 Abhishek Meharia
电子邮箱 [email protected]
付费类型 free
扩展官网 https://abhim.in
帮助页面URL https://abhim.in
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AdSkipper",
    "description": "This extension will skip youtube ads.",
    "version": "0.7",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "MacCtrl+Shift+K"
            },
            "description": "Switches between play and pause state.",
            "name": "Play pause shortcut command",
            "global": true
        }
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "skip.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'"
}