Dark Mode View

Allows you to enable all websites to be dark mode to ease eye strain.

Dark Mode View là gì?

Dark Mode View là một tiện ích mở rộng Chrome được phát triển bởi http://darkview.org, và tính năng chính của nó là "Allows you to enable all websites to be dark mode to ease eye strain. ".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dark Mode View

Tải xuống các tệp mở rộng Dark Mode View 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

                        Dark Mode View other wise known as Dark view for short. Is a dark mode extension created to give users the ability to set their favorite websites to be dark mode. Dark View also has an invert option that turns white text into yellow to assist with reading in the dark.                    

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

Tên Dark Mode View Dark Mode View
ID ooliejnanmkmfamajdfidknhaklmiedd
URL Chính Thức https://chrome.google.com/webstore/detail/dark-mode-view/ooliejnanmkmfamajdfidknhaklmiedd
Mô tả Allows you to enable all websites to be dark mode to ease eye strain.
Kích Thước Tệp 20.61 KB
Số Lần Cài Đặt 5,870
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-03-30
Ngày Phát Hành 2021-03-30
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển http://darkview.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://darkview.org/
URL Trang Trợ Giúp https://darkview.org/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Greg Henderson",
    "homepage_url": "https:\/\/darkview.org",
    "name": "Dark Mode View",
    "description": "Allows you to enable all websites to be dark mode to ease eye strain. ",
    "icons": {
        "128": "icon-128.png"
    },
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "autotoggle.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_title": "Dark Mode Viewer",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}