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 là gì?
Night Owl là một tiện ích mở rộng Chrome được phát triển bởi Jishaal Kalyan, và tính năng chính của nó là "An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Night Owl
Tải xuống các tệp mở rộng Night Owl dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | iagomahcookmbnimmomjcmiaimmhompf |
URL Chính Thức | https://chromewebstore.google.com/detail/night-owl/iagomahcookmbnimmomjcmiaimmhompf |
Mô tả | An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise. |
Kích Thước Tệp | 554 KB |
Số Lần Cài Đặt | 203 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2022-10-16 |
Ngày Phát Hành | 2019-09-07 |
Nhà Phát Triển | Jishaal Kalyan |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jishaal/night-owl-extension |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |