YouTube Auto Pause Blocker

Disables the "Video Paused. Continue Watching?" popup on YouTube.

YouTube Auto Pause Blocker란 무엇입니까?

YouTube Auto Pause Blocker은(는) https://browsecraft.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Disables the "Video Paused. Continue Watching?" popup on YouTube."입니다.

확장 프로그램 스크린샷

screenshot

YouTube Auto Pause Blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Uses improved methods to prevent the "Video paused. Continue watching?" popup on YouTube. 

This extension will completely block the confirmation box from appearing, even if the tab is not focused/visible. 

Functions on regular YouTube and YouTube music.

Works perfectly in any viewing mode, such as full-screen, miniplayer and theater mode.

If you have issues with the extension please email me or use the contact form on the website.

Made with ❤️ by Browsecraft gang. Stand with Ukraine 💙💛.

DISCLAIMER
Please note "YouTube Auto Pause Blocker" is not made by YouTube™ or affiliated with YouTube™. YouTube™  are trademarks of Google LLC.                    

확장 프로그램 기본 정보

이름 YouTube Auto Pause Blocker YouTube Auto Pause Blocker
ID kdmekoohmngfmmmmlflddplohklmmmoc
공식 URL https://chromewebstore.google.com/detail/youtube-auto-pause-blocke/kdmekoohmngfmmmmlflddplohklmmmoc
설명 Disables the "Video Paused. Continue Watching?" popup on YouTube.
파일 크기 27.42 KB
설치 횟수 31,903
현재 버전 23.12.11
최근 업데이트 2023-12-12
출시 날짜 2019-09-28
평점 3.18/5 총 107 개의 평점
개발자 https://browsecraft.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://browsecraft.com/
도움말 페이지 URL https://browsecraft.com/contacts
개인정보 보호 정책 페이지 URL https://browsecraft.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Auto Pause Blocker",
    "description": "Disables the \"Video Paused. Continue Watching?\" popup on YouTube.",
    "version": "23.12.11",
    "manifest_version": 2,
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/www.youtube.com\/*",
        "https:\/\/music.youtube.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/music.youtube.com\/*"
            ],
            "js": [
                "injected.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "128": "128.png"
    }
}