Night Owl
An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.
Night Owlとは何ですか?
Night OwlはJishaal Kalyanによって開発されたChromeの拡張機能で、その主な機能は「An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.」です。
拡張機能のスクリーンショット
Night Owl拡張機能のCRXファイルをダウンロード
Night Owl拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise. Is it a dark and rainy day? You can turn off the automatic scheduler in the Settings to enable night mode manually again. The following sites are currently supported - twitter.com - reddit.com ***Coming Soon*** - Automatic toggling night mode when the user is idle - More sites that support night mode ======= Owl logo from https://www.emojione.com/
拡張機能の基本情報
名前 | |
ID | iagomahcookmbnimmomjcmiaimmhompf |
公式URL | https://chromewebstore.google.com/detail/night-owl/iagomahcookmbnimmomjcmiaimmhompf |
説明 | An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise. |
ファイルサイズ | 554 KB |
インストール数 | 203 |
現在のバージョン | 1.1.0 |
最終更新日 | 2022-10-16 |
公開日 | 2019-09-07 |
開発者 | Jishaal Kalyan |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/jishaal/night-owl-extension |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "short_name": "Night Owl", "name": "Night Owl", "version": "1.1.0", "manifest_version": 2, "description": "An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.", "browser_action": { "default_popup": "index.html", "default_title": "Night Owl" }, "background": { "scripts": [ "browser-polyfill.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/*.reddit.com\/*" ], "js": [ "browser-polyfill.min.js", "content.js" ] } ], "icons": { "128": "icon_128x128.png", "64": "icon_64x64.png", "32": "icon_32x32.png" }, "permissions": [ "tabs", "activeTab", "cookies", "geolocation", "storage", "*:\/\/*.twitter.com\/*", "*:\/\/*.reddit.com\/*" ] } |