Nocturnal Surfer Extension
Inverted display mode for less eye strain in dark or dim lighting
Что такое Nocturnal Surfer Extension?
Nocturnal Surfer Extension - это расширение Chrome, разработанное https://browsertech.co, и его основная функция - "Inverted display mode for less eye strain in dark or dim lighting".
Снимки экрана расширения
Скачать файл CRX расширения Nocturnal Surfer Extension
Скачайте файлы расширений Nocturnal Surfer Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This free add-on for Chrome Browser allows for easy toggling of day and night mode. Set a background from our image gallery powered by Unsplash in your Chrome Browser default New tab. We are actually changing your Chrome browser default new tab page. In Night Mode, pages fade to dark and all text colors adjust to dark color. Day Mode, pages and text colors will switch to normal. You can white-list websites from night mode, just right click a page and click "Add site to whitelist". Search desired information, image, video and others through Bing search. There is a Digital Clock in new tab. You can check your time in 12 or 24-hour format. By clicking "Add to Chrome", I accept and agree to install "Nocturnal Surfer Extension" Chrome extension and setting Chrome™ New Tab to that provided by the service with web search by Bing, and the Privacy Policy (https://browsertech.co/privacy-policy/) and Terms of Use (https://browsertech.co/terms-conditions/).
Основная информация о расширении
Название | Nocturnal Surfer Extension |
ID | mmjcpjcempclckbijgchmjedopfcnpea |
Официальный URL | https://chromewebstore.google.com/detail/nocturnal-surfer-extensio/mmjcpjcempclckbijgchmjedopfcnpea |
Описание | Inverted display mode for less eye strain in dark or dim lighting |
Размер файла | 700 KB |
Количество установок | 56,060 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2021-09-07 |
Дата публикации | 2021-07-05 |
Разработчик | https://browsertech.co |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://browsertech.co |
URL страницы политики конфиденциальности | https://browsertech.co/privacy-policy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Nocturnal Surfer Extension", "short_name": "Nocturnal Surfer", "homepage_url": "https:\/\/nocturnalsurfer.browsertech.co", "description": "Inverted display mode for less eye strain in dark or dim lighting", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage", "contextMenus", "activeTab", "tabs", "https:\/\/api.browsertech.co\/nightlight\/" ], "version": "1.0.1", "browser_action": { "default_icon": "public\/images\/icon.png", "default_title": "Toggle night mode" }, "icons": { "16": "public\/images\/bd-16.png", "32": "public\/images\/bd-32.png", "48": "public\/images\/bd-48.png", "128": "public\/images\/bd-128.png" }, "chrome_url_overrides": { "newtab": "landing.html" }, "web_accessible_resources": [ "images\/*.*" ], "content_scripts": [ { "all_frames": true, "js": [ "content_script_start.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" }, { "all_frames": true, "js": [ "content_script_idle.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle" } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self';style-src 'self' 'unsafe-inline' *;media-src *;" } |