WhatsApp Web Dark Mode

A simple extention to turn on dark mode of WhatsApp Web

WhatsApp Web Dark Mode là gì?

WhatsApp Web Dark Mode là một tiện ích mở rộng Chrome được phát triển bởi Sashen Pasindu, và tính năng chính của nó là "A simple extention to turn on dark mode of WhatsApp Web".

Ả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 WhatsApp Web Dark Mode

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

                        A simple chrome extension to turn on the dark theme of WhatsApp Web                    

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

Tên WhatsApp Web Dark Mode WhatsApp Web Dark Mode
ID pbmjjliggohmnkgdfpggpiicnccnlhmm
URL Chính Thức https://chrome.google.com/webstore/detail/whatsapp-web-dark-mode/pbmjjliggohmnkgdfpggpiicnccnlhmm
Mô tả A simple extention to turn on dark mode of WhatsApp Web
Kích Thước Tệp 43.16 KB
Số Lần Cài Đặt 354
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2020-05-20
Ngày Phát Hành 2020-05-20
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Sashen Pasindu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://sashen.me
URL Trang Trợ Giúp https://twitter.com/sashenme
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhatsApp Web Dark Mode",
    "version": "0.1",
    "manifest_version": 2,
    "description": "A simple extention to turn on dark mode of WhatsApp Web",
    "author": "Sashen Pasindu",
    "homepage_url": "https:\/\/sashen.me",
    "background": {
        "scripts": [
            "modernizr.min.js",
            "js\/jquery-3.4.1.min.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js",
                "js\/jquery-3.4.1.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "128": "images\/icon_128.png"
    }
}