YoutubeAutoSkip

A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.

什么是YoutubeAutoSkip?

YoutubeAutoSkip是由AshleyTyagi开发的Chrome扩展程序,该扩展的主要功能是“A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.”。

扩展截图

下载YoutubeAutoSkip扩展crx文件

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

扩展使用说明

                        Now using manifest V3!
A script to auto-click skips, the icon which is used was made by Pixel Perfect on https://www.flaticon.com/authors/pixel-perfect

An extension with no user-interface which runs in the background and will effectively auto-skip ads on the site youtube.com by either shifting straight to the end of the advertisement or by either automatically pressing the skip button. Disclaimer this will not remove ads on the side of YouTube since it isn't an adblocker it simply auto-clicks skip or either it shifts your progress of watching the ad straight to the end, so you effectively skip it.
Here is the link to the Github repository containing the code: https://github.com/oslohes123/YoutubeAutoSkip                    

扩展基本信息

名称 YoutubeAutoSkip YoutubeAutoSkip
ID jackpdpiimmbmbcpjoabcahggiaindac
官方URL https://chromewebstore.google.com/detail/youtubeautoskip/jackpdpiimmbmbcpjoabcahggiaindac
简介 A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.
文件大小 5.86 KB
安装次数 51
当前版本 3.0
更新时间 2022-09-26
上架时间 2020-06-28
评分 5.00/5 共1次评分
开发者 AshleyTyagi
电子邮箱 [email protected]
付费类型 free
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YoutubeAutoSkip",
    "version": "3.0",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "description": "A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.",
    "icons": {
        "48": "icon.ico"
    }
}