Sleep timer for Netflix

Sleep timer for Netflix, a plugin that automatically turns off videos for a calm sleep. Includes-custom timer and countdown feature.

Sleep timer for Netflixคืออะไร?

Sleep timer for Netflix เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Streaming Extensions และคุณลักษณะหลักของมันคือ "Sleep timer for Netflix, a plugin that automatically turns off videos for a calm sleep. Includes-custom timer and countdown feature."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sleep timer for Netflix

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

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

                        Introducing the ultimate bedtime companion for all your video-watching needs! With Sleep timer for Netflix, you'll never have to worry about falling asleep with the video still playing.😴

Our easy-to-use interface allows you to set a timer for your video before you hit the hay, ensuring that the video will automatically turn off after a certain amount of time, so you can enjoy a peaceful and uninterrupted sleep. 
Select one of our pre-set options, like 15 minutes, 30 minutes, 45 minutes, or 1 hour, or customize your own time.

But the convenience doesn't stop there! Our plugin also includes a handy countdown feature, so you can keep an eye on how much time is left before the video turns off. And if you decide you're not quite ready to call it a night, you can adjust or cancel the countdown with just a few clicks.

With our plugin, you'll never have to worry about waking up to a still-playing video or a drained battery again! Enjoy your videos and have a goodnight sleep with our Google Chrome plugin

❗Disclaimer: All product and company names are trademarks or registered trademarks of their respective holders. This extension holds no association or affiliation with them or any third-party companies.❗                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Sleep timer for Netflix Sleep timer for Netflix
ID fdgllacdjgjdpghnmkbemdgbejdpakpd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sleep-timer-for-netflix/fdgllacdjgjdpghnmkbemdgbejdpakpd
คำอธิบาย Sleep timer for Netflix, a plugin that automatically turns off videos for a calm sleep. Includes-custom timer and countdown feature.
ขนาดไฟล์ 29.98 KB
จำนวนการติดตั้ง 878
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2023-11-10
วันที่เผยแพร่ 2023-02-06
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Streaming Extensions
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sleep timer for Netflix",
    "description": "Sleep timer for Netflix, a plugin that automatically turns off videos for a calm sleep. Includes-custom timer and countdown feature.",
    "version": "0.0.3",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "alarms",
        "notifications"
    ],
    "host_permissions": [
        "*:\/\/*.netflix.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "sleep_timer.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "sleep_timer.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "contentWindow.js"
            ],
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ]
        }
    ]
}