Nocturnal Surfer Extension

Inverted display mode for less eye strain in dark or dim lighting

Nocturnal Surfer Extension là gì?

Nocturnal Surfer Extension là một tiện ích mở rộng Chrome được phát triển bởi https://browsertech.co, và tính năng chính của nó là "Inverted display mode for less eye strain in dark or dim lighting".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Nocturnal Surfer Extension

Tải xuống các tệp mở rộng Nocturnal Surfer Extension 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

                        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/).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Nocturnal Surfer Extension Nocturnal Surfer Extension
ID mmjcpjcempclckbijgchmjedopfcnpea
URL Chính Thức https://chromewebstore.google.com/detail/nocturnal-surfer-extensio/mmjcpjcempclckbijgchmjedopfcnpea
Mô tả Inverted display mode for less eye strain in dark or dim lighting
Kích Thước Tệp 700 KB
Số Lần Cài Đặt 56,060
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-09-07
Ngày Phát Hành 2021-07-05
Nhà Phát Triển https://browsertech.co
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://browsertech.co
URL Trang Chính Sách Bảo Mật https://browsertech.co/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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 *;"
}