Dusk

Dusk - protect your eyes with dark mode for popular sites

Dusk là gì?

Dusk là một tiện ích mở rộng Chrome được phát triển bởi Valentin Gorenc, và tính năng chính của nó là "Dusk - protect your eyes with dark mode for popular sites".

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

screenshot
screenshot

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

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

                        Dusk applies a dark theme to your browsing experience.

Features:
- Works on the most popular sites
- Dark search: you search on dark-themed search engine
- Blacklist: you can add a site to the blacklist if you experience any issues                    

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

Tên Dusk Dusk
ID fbgnkgdmcmhiaakjbilpjnpenhinkgon
URL Chính Thức https://chrome.google.com/webstore/detail/dusk/fbgnkgdmcmhiaakjbilpjnpenhinkgon
Mô tả Dusk - protect your eyes with dark mode for popular sites
Kích Thước Tệp 794 KB
Số Lần Cài Đặt 700,000
Phiên Bản Hiện Tại 2.33
Cập Nhật Lần Cuối 2021-08-04
Ngày Phát Hành 2021-03-24
Đánh Giá 2.00/5 Tổng số 12 Đánh Giá
Nhà Phát Triển Valentin Gorenc
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.notion.so/Privacy-policy-Dusk-711c91d315954dcc8c9804360b2b0430
Ngôn Ngữ Được Hỗ Trợ id,ms,de,en,en-GB,en-US,fil,fr,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,mr,hi,bn,gu,ta,te,ml,th,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content1.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "js": [
                "content2.js"
            ],
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "default_locale": "en",
    "description": "__MSG_extDesc__",
    "icons": {
        "128": "icon-128.png",
        "48": "icon-48.png",
        "16": "icon-16.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "storage",
        "",
        "contextMenus",
        "tabs"
    ],
    "version": "2.33",
    "web_accessible_resources": [
        "\/css\/*.css"
    ]
}