note-dark

Dark mode for note.com

note-dark là gì?

note-dark là một tiện ích mở rộng Chrome được phát triển bởi sakuraya, và tính năng chính của nó là "Dark mode for note.com".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng note-dark 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 style for https://note.com
The service provides no official dark mode, so this extension overwrite style to enable dark mode.                    

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

Tên note-dark note-dark
ID ndjhheglhimmpjbgedbacgmloigpicng
URL Chính Thức https://chromewebstore.google.com/detail/note-dark/ndjhheglhimmpjbgedbacgmloigpicng
Mô tả Dark mode for note.com
Kích Thước Tệp 47.04 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 1.0.13
Cập Nhật Lần Cuối 2020-12-30
Ngày Phát Hành 2020-05-24
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển sakuraya
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Blue-Pix/note-dark
Ngôn Ngữ Được Hỗ Trợ ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "note-dark",
    "version": "1.0.13",
    "manifest_version": 2,
    "description": "Dark mode for note.com",
    "permissions": [
        "*:\/\/note.com\/*"
    ],
    "web_accessible_resources": [
        "images\/*",
        "*.css"
    ],
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "browser_action": {
        "default_title": "",
        "default_icon": {
            "19": "images\/19.png",
            "38": "images\/38.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.4.1.slim.min.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/note.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}