YouTube Auto Pause Blocker

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

YouTube Auto Pause Blocker là gì?

YouTube Auto Pause Blocker là một tiện ích mở rộng Chrome được phát triển bởi https://browsecraft.com, và tính năng chính của nó là "Disables the "Video Paused. Continue Watching?" popup on YouTube.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Auto Pause Blocker

Tải xuống các tệp mở rộng YouTube Auto Pause Blocker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube Auto Pause Blocker YouTube Auto Pause Blocker
ID kdmekoohmngfmmmmlflddplohklmmmoc
URL Chính Thức https://chromewebstore.google.com/detail/youtube-auto-pause-blocke/kdmekoohmngfmmmmlflddplohklmmmoc
Mô tả Disables the "Video Paused. Continue Watching?" popup on YouTube.
Kích Thước Tệp 27.42 KB
Số Lần Cài Đặt 31,903
Phiên Bản Hiện Tại 23.12.11
Cập Nhật Lần Cuối 2023-12-12
Ngày Phát Hành 2019-09-28
Đánh Giá 3.18/5 Tổng số 107 Đánh Giá
Nhà Phát Triển https://browsecraft.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://browsecraft.com/
URL Trang Trợ Giúp https://browsecraft.com/contacts
URL Trang Chính Sách Bảo Mật https://browsecraft.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}