Wide Awake
Overrides display sleep and keeps monitor on
Wide Awakeとは何ですか?
Wide Awakeはbenzihomoによって開発されたChromeの拡張機能で、その主な機能は「Overrides display sleep and keeps monitor on」です。
拡張機能のスクリーンショット
Wide Awake拡張機能のCRXファイルをダウンロード
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.
拡張機能の基本情報
名前 | |
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" } } } |