YouTube Popup Tamer

Watch YouTube without interruptions. 2 modes - blocking (FF only) and closing annoying popups, video ads and more.

YouTube Popup Tamer란 무엇입니까?

YouTube Popup Tamer은(는) AnDre에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Watch YouTube without interruptions. 2 modes - blocking (FF only) and closing annoying popups, video ads and more."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

YouTube Popup Tamer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        It blocks all popups and video ads before they even show up - you won't even see any pause. If by changes in code or some other reason blocking module fails there is always clicking module.

Sadly Chrome doesn't support blocking module :((( 
Clicking module still works.
Only Firefox users can use YouTube with absolutely no interruptions.

All blocked, unnecessary stuff can take up to 48% of data sent to your browser !!!

I used many extension and they all have some defects, so i wrote one for myself, and i want to share it with you.

Works on any popup (big, small, on left and right ;) ), but in particular:
- Sign in to YouTube
- Video paused. Continue watching?
- Age confirmation
- YouTube Music ad
- Chrome ad
- Make a donation to this channel
- You are not using a YouTube account
- and probably every annoying popup YT adds later...
Cookies popup excluded by default (can be enabled in options).

Unlike other similar extensions:
- has two modes that work simultaneously
- blocking works on 5 different YT network data responses
- blocking works on 6 different YT source codes
- it shouldn't slow down your browser
- it works even if tab is not selected
- should work with future popups

Known issues:
- (blocking module) if there is "ERROR" instead % in stats box(lower left corner) or video won't load it means that Google changed something in code or requests and blocking module will not work until i come across the same variant and make update
- (blocking module) when using back and forward button data will not change because of cache
- (clicking module) when login popup is tamed and you quickly load another video it may appear and be tamed once again (popup needs couple hundred ms to execute code)
- (clicking module) there are some yt functions that uses popup container and should be excluded (e.g. if you're logged in the whole menu after clicking avatar in top right corner - this one is the only one excluded for now)

Development roadmap:
- "Get the best YouTube experience, Sign in to save videos, subscribe, and more" - error message in video container

It also clicks "Skip Ad" button when ad comes up (mainly for leftovers after Adblock).
Does not interfere with the Adblock Plus extension.
If you have any suggestions write me.

This extension will always be free.
If this extension made your life a bit easier and you want it to be further developed please make tiny donation, it would mean a lot to me.
PayPal: http://www.bit.ly/382is5H

Thanks!                    

확장 프로그램 기본 정보

이름 YouTube Popup Tamer YouTube Popup Tamer
ID ljhkfklbohndemkbafegonhpanfajeae
공식 URL https://chromewebstore.google.com/detail/youtube-popup-tamer/ljhkfklbohndemkbafegonhpanfajeae
설명 Watch YouTube without interruptions. 2 modes - blocking (FF only) and closing annoying popups, video ads and more.
파일 크기 72.17 KB
설치 횟수 948
현재 버전 2.1.7.5
최근 업데이트 2021-05-29
출시 날짜 2020-11-15
평점 3.88/5 총 8 개의 평점
개발자 AnDre
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.d3andre.com/ytpt/
도움말 페이지 URL http://www.d3andre.com/ytpt/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Popup Tamer",
    "version": "2.1.7.5",
    "description": "Watch YouTube without interruptions. 2 modes - blocking (FF only) and closing annoying popups, video ads and more.",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "*:\/\/www.youtube.com\/*"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "web_accessible_resources": [
        "img\/*.png",
        "icons\/*.png"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "doc_start.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "yt_popup_tamer.js"
            ],
            "css": [
                "yt_popup_tamer.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/consent.youtube.com\/*"
            ],
            "js": [
                "yt_cookie.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}