Color Temperature (Change Lux)
A lite and easy-to-use addon that adjusts the screen color to match the environment!
Τι είναι το Color Temperature (Change Lux);
Το Color Temperature (Change Lux) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Benni, και η κύρια λειτουργία του είναι "A lite and easy-to-use addon that adjusts the screen color to match the environment!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Color Temperature (Change Lux)
Λήψη αρχείων επέκτασης Color Temperature (Change Lux) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Color Temperature (Change Lux) extension protects your eyes by adding a warm color to websites (i.e. at night time or when the ambient is dark). Using this addon you can avoid excessive blue light and also it makes you sleep much better by protecting you from the blue glow of your computer screen. Some features: 1. Easily change the color temperature of your screen from cool to warm colors (fitted for day or night time). 2. Toolbar panel UI has the required tools to adjust the color temperature. 3. There is also an ON|OFF switch to easily switch the addon ON or OFF. 4. This addon applies color temperature to all websites, but you can add the desired site(s) to a whitelist table to exclude them from color changing. 5. There are also some keyboard shortcuts to enhance adding websites to the whitelist table. 6. Options page for this addon has several settings to adjust. To report bugs, please fill out the bug report form on the addon's homepage (https://mybrowseraddon.com/screen-color-temperature.html).
Βασικές Πληροφορίες Επέκτασης
Όνομα | Color Temperature (Change Lux) |
ID | mppedbpcpkaeclkgoppmdpdobhlpifeb |
Επίσημο URL | https://chromewebstore.google.com/detail/color-temperature-change/mppedbpcpkaeclkgoppmdpdobhlpifeb |
Περιγραφή | A lite and easy-to-use addon that adjusts the screen color to match the environment! |
Μέγεθος Αρχείου | 68.69 KB |
Αριθμός Εγκαταστάσεων | 5,346 |
Τρέχουσα Έκδοση | 0.1.7 |
Τελευταία Ενημέρωση | 2023-01-17 |
Ημερομηνία Δημοσίευσης | 2020-06-28 |
Αξιολόγηση | 3.65/5 Συνολικά 26 Αξιολογήσεις |
Προγραμματιστής | Benni |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://mybrowseraddon.com/screen-color-temperature.html |
Διεύθυνση URL της Σελίδας Βοήθειας | https://mybrowseraddon.com/screen-color-temperature.html |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.7", "manifest_version": 3, "offline_enabled": true, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*\/*" ], "name": "Color Temperature (Change Lux)", "homepage_url": "https:\/\/mybrowseraddon.com\/screen-color-temperature.html", "description": "A lite and easy-to-use addon that adjusts the screen color to match the environment!", "background": { "service_worker": "background.js" }, "options_ui": { "open_in_tab": true, "page": "data\/options\/options.html" }, "action": { "default_popup": "data\/popup\/popup.html", "default_title": "Color Temperature (Change Lux)", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "commands": { "toggle": { "description": "Toggle color temperature (ON | OFF)", "suggested_key": { "mac": "Command+Shift+Y", "default": "Ctrl+Shift+Y" } }, "add": { "description": "Add the active tab to whitelist", "suggested_key": { "mac": "Command+Shift+U", "default": "Ctrl+Shift+U" } }, "remove": { "description": "Remove the active tab from whitelist", "suggested_key": { "mac": "Command+Shift+Z", "default": "Ctrl+Shift+Z" } } }, "content_scripts": [ { "all_frames": false, "matches": [ "*:\/\/*\/*" ], "match_about_blank": true, "run_at": "document_start", "js": [ "data\/content_script\/inject.js" ], "css": [ "data\/content_script\/inject.css" ] } ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |