Wide Awake

Overrides display sleep and keeps monitor on

Wide Awakeคืออะไร?

Wide Awake เป็นส่วนขยายของ Chrome ที่พัฒนาโดย benzihomo และคุณลักษณะหลักของมันคือ "Overrides display sleep and keeps monitor on"

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

screenshot

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

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

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

                        Press "Alt+Shift+W" to toggle the display's sleep mode. Useful to prevent the display dimming when watching a cool movie.                    

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

ชื่อ Wide Awake Wide Awake
ID dnaojefanpmakfgcaliphepgoiiafmpf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/wide-awake/dnaojefanpmakfgcaliphepgoiiafmpf
คำอธิบาย Overrides display sleep and keeps monitor on
ขนาดไฟล์ 9.56 KB
จำนวนการติดตั้ง 18,015
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2014-06-19
วันที่เผยแพร่ 2014-06-19
คะแนน 2.45/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา benzihomo
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wide Awake",
    "description": "Overrides display sleep and keeps monitor on",
    "version": "0.1",
    "manifest_version": 2,
    "permissions": [
        "power",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "extension.css"
            ],
            "js": [
                "extension.js"
            ]
        }
    ],
    "commands": {
        "toggle-wide-awake": {
            "suggested_key": {
                "default": "Alt+Shift+W"
            },
            "description": "Toggle Wide Awake"
        }
    }
}