Night Mode

Enjoy the web in the new night colors and protect your eyes

Night Mode là gì?

Night Mode là một tiện ích mở rộng Chrome được phát triển bởi SmartLink, và tính năng chính của nó là "Enjoy the web in the new night colors and protect your eyes".

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

screenshot

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

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

                        Night Mode

Version 2.0.0
- Fixed style issues after Instagram latest update.
- Adopted native DarkTheme from the Instagram app.
Enjoy !

This extension was developed Independently by SmartLink and not affiliated with Instagram Inc.                    

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

Tên Night Mode Night Mode
ID bkiiljdcpccihhoigelmohcfkehdnjej
URL Chính Thức https://chromewebstore.google.com/detail/night-mode/bkiiljdcpccihhoigelmohcfkehdnjej
Mô tả Enjoy the web in the new night colors and protect your eyes
Kích Thước Tệp 42.85 KB
Số Lần Cài Đặt 152,483
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2022-06-07
Ngày Phát Hành 2020-05-16
Đánh Giá 3.84/5 Tổng số 129 Đánh Giá
Nhà Phát Triển SmartLink
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Night Mode",
    "description": "Enjoy the web in the new night colors and protect your eyes",
    "version": "2.0.0",
    "author": "SmartLink",
    "browser_action": {
        "default_title": "Have a good day"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "icons": {
        "16": "imgs\/icon16.png",
        "48": "imgs\/icon48.png",
        "128": "imgs\/icon128.png"
    },
    "web_accessible_resources": [
        "nightmode.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}