YouTube Auto Pause Blocker

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

YouTube Auto Pause Blockerคืออะไร?

YouTube Auto Pause Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://browsecraft.com และคุณลักษณะหลักของมันคือ "Disables the "Video Paused. Continue Watching?" popup on YouTube."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Auto Pause Blocker

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Auto Pause Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}