No sleep

This extension allows you to prevent your device from going to dim/sleep/hibernate/lock

No sleepคืออะไร?

No sleep เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jgaboryj และคุณลักษณะหลักของมันคือ "This extension allows you to prevent your device from going to dim/sleep/hibernate/lock"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย No sleep

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

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

                        Chrome extension to keep your device awake, that works on mobile phones

What it does?
This extension allows you to prevent your device from going to dim/sleep/hibernate/lock state when there is no user activity.
It is helpful for example during reading article or cooking meal using recipe from your favourite food blog. The lock is active only on the page on which you activate it, so you don't have to remember to release it when you're done.

How it works?
When you are on the page, and you don't want your screen to go dim while reading this page just click the icon of this extension.
The lock releases when you:
- go to another page
- change tab in your browser
- refresh the page
- close/minimize browser
- click on extension icon again

How to use on mobile?
Check Kiwi Browser - it is Chrome based mobile browser that supports chrome extensions

Why it is better that other similar extenstions? 
There are some chrome extensions that work in similar way. They are great, but they don't work on mobile device  

Technical explanation
Extension is using native browser api - wakelock, that was created exactly for this purpose.

https://developer.mozilla.org/en-US/docs/Web/API/Navigator/wakeLock  

Attribution
Icons used in this plugin are created by surang and were found on Flaticon website
https://www.flaticon.com/free-icons/sleep                    

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

ชื่อ No sleep No sleep
ID bomdbfmieohagcjbfckpihndjdeeabgo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/no-sleep/bomdbfmieohagcjbfckpihndjdeeabgo
คำอธิบาย This extension allows you to prevent your device from going to dim/sleep/hibernate/lock
ขนาดไฟล์ 36.08 KB
จำนวนการติดตั้ง 778
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2022-07-08
วันที่เผยแพร่ 2022-07-08
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา jgaboryj
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No sleep",
    "version": "0.1.0",
    "description": "This extension allows you to prevent your device from going to dim\/sleep\/hibernate\/lock",
    "manifest_version": 3,
    "author": "yrobag",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "notifications",
        "tabs"
    ],
    "action": {
        "default_title": "No sleep"
    },
    "icons": {
        "128": "logo.png"
    }
}