YouTube AdAway - We skip, not block ads

A lightweight YouTube ad skipper

什么是YouTube AdAway - We skip, not block ads?

YouTube AdAway - We skip, not block ads是由elliot0412开发的Chrome扩展程序,该扩展的主要功能是“A lightweight YouTube ad skipper”。

扩展截图

screenshot
screenshot

下载YouTube AdAway - We skip, not block ads扩展crx文件

下载YouTube AdAway - We skip, not block ads扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        We created this tool with a simple mission: make your YouTube watching smoother while still supporting the creators we all love. YouTube's policies are tough on ad blockers, so instead, we find those ads and skip them for you. It's a win-win - the ads are there but won't get in your way.

✨ Features
1. Comprehensive Ad Removal

YouTube AdAway removes all advertisements on YouTube, ensuring an uninterrupted viewing experience—even on videos with non-skippable ads.

2. AutoSkipping Toggle

We empower users with the choice to control the auto-skipping of ads. With a simple press of the q key, you can manually skip ads whenever possible, when the auto-skip feature is turned off.

3. Optimized Performance

Utilizing MutationObserver, we provide a modern and streamlined approach to instantly detect webpage changes, ensuring top-notch performance without unnecessary workload.                    

扩展基本信息

名称 YouTube AdAway - We skip, not block ads YouTube AdAway - We skip, not block ads
ID mghiaikgcejekailbglmgngilifmhoij
官方URL https://chromewebstore.google.com/detail/youtube-adaway-we-skip-no/mghiaikgcejekailbglmgngilifmhoij
简介 A lightweight YouTube ad skipper
文件大小 1.06 MB
安装次数 125
当前版本 0.1.0
更新时间 2023-10-28
上架时间 2023-10-28
评分 5.00/5 共5次评分
开发者 elliot0412
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/ChouYunShuo/AdAway
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube AdAway - We skip, not block ads",
    "version": "0.1.0",
    "description": "A lightweight YouTube ad skipper",
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "icons": {
        "128": "assets\/icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": {
            "128": "assets\/icon.png"
        },
        "default_title": "Undetectable YT Video Ads Skipper",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}