Tisy Dark Mode

Apply dark mode for any website

Tisy Dark Mode là gì?

Tisy Dark Mode là một tiện ích mở rộng Chrome được phát triển bởi Lê Hữu Phúc, và tính năng chính của nó là "Apply dark mode for any website".

Ả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 Tisy Dark Mode

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

                        • Apply dark mode for any website (except pages protected by the browser of course).
• Super simple and easy to use with one click.
• Instantly apply for all other tabs having the same domain.
• Day and Night styles (Day style has more contrast).
• An option page that allows manually input and backup whitelisted domains.                    

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

Tên Tisy Dark Mode Tisy Dark Mode
ID cnnipakfnojcohgpgikgnndiiajiooja
URL Chính Thức https://chromewebstore.google.com/detail/tisy-dark-mode/cnnipakfnojcohgpgikgnndiiajiooja
Mô tả Apply dark mode for any website
Kích Thước Tệp 478 KB
Số Lần Cài Đặt 49
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2022-10-18
Ngày Phát Hành 2022-09-15
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Lê Hữu Phúc
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tisy Dark Mode",
    "description": "Apply dark mode for any website",
    "version": "1.2",
    "manifest_version": 3,
    "icons": {
        "128": "assets\/icons\/bulb-128.png"
    },
    "action": {
        "default_title": "Turn dark mode on\/off",
        "default_icon": {
            "128": "assets\/icons\/bulb-128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "assets\/pages\/options.html",
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": false,
            "css": [
                "assets\/styles\/tisy-dark-mode.css"
            ],
            "js": [
                "assets\/scripts\/tisy-dark-mode.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "permissions": [
        "scripting",
        "storage",
        "tabs",
        "activeTab"
    ]
}