NightMode

Invert Website Colors for Night Viewing

NightMode란 무엇입니까?

NightMode은(는) https://northernsignal.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Invert Website Colors for Night Viewing"입니다.

확장 프로그램 스크린샷

screenshot

NightMode 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Invert the color and adjust brightness of webpages for viewing at night.  Especially useful for public safety and mobile users.                    

확장 프로그램 기본 정보

이름 NightMode NightMode
ID kommocijhfofkmkmionppgkhnhnjpmdc
공식 URL https://chrome.google.com/webstore/detail/nightmode/kommocijhfofkmkmionppgkhnhnjpmdc
설명 Invert Website Colors for Night Viewing
파일 크기 21.41 KB
설치 횟수 492
현재 버전 1.0.0
최근 업데이트 2017-01-14
출시 날짜 2017-01-14
평점 3.43/5 총 7 개의 평점
개발자 https://northernsignal.com
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://northernsignal.com
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "nightmode-128.png",
        "default_popup": "popup.html",
        "default_title": "NightMode (Shift+F11)"
    },
    "commands": {
        "command_toggle_global": {
            "description": "Toggle NightMode ON\/OFF"
        },
        "command_toggle_site": {
            "description": "Toggle Inversion on a Site"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "nightmode.js"
            ],
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_start"
        }
    ],
    "description": "Invert Website Colors for Night Viewing",
    "icons": {
        "128": "nightmode-128.png"
    },
    "name": "NightMode",
    "manifest_version": 2,
    "options_page": "options.html",
    "permissions": [
        "",
        "tabs"
    ],
    "web_accessible_resources": [
        "nightmode.css"
    ],
    "version": "1.0.0",
    "short_name": "NightMode",
    "author": "Northern Signal"
}