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 |
官方網址 | 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 |
電子郵箱 | [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\/*" ] } |