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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}