Wikipedia night mode

Wikipedia night mode allows you to work more comfortably on the Wikipedia website in the dark or in low light

Wikipedia night mode란 무엇입니까?

Wikipedia night mode은(는) grunbaster에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Wikipedia night mode allows you to work more comfortably on the Wikipedia website in the dark or in low light"입니다.

확장 프로그램 스크린샷

screenshot

Wikipedia night mode 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The dark Wikipedia theme or Wikipedia Night mode changes the background of the Wikipedia website to dark and the font to light.
A dark theme for Wikipedia turns on / off by clicking on the extension icon. It is convenient to use at night or in poor lighting, helps your eyes read text more comfortably.                    

확장 프로그램 기본 정보

이름 Wikipedia night mode Wikipedia night mode
ID idhghjodolinkdhibgfgfoceackpcjfl
공식 URL https://chromewebstore.google.com/detail/wikipedia-night-mode/idhghjodolinkdhibgfgfoceackpcjfl
설명 Wikipedia night mode allows you to work more comfortably on the Wikipedia website in the dark or in low light
파일 크기 43.79 KB
설치 횟수 63,704
현재 버전 0.0.26
최근 업데이트 2021-10-27
출시 날짜 2020-05-29
평점 3.14/5 총 168 개의 평점
개발자 grunbaster
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://policy-extension.site/policy_package_tracker.html
지원되는 언어 de,en,fr,tr,es,it,pl,pt-PT,ru,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "short_name": "__MSG_short_name__",
    "description": "__MSG_description__",
    "manifest_version": 2,
    "version": "0.0.26",
    "default_locale": "en",
    "browser_action": {
        "default_icon": "img\/enable.png",
        "default_title": "__MSG_short_name__"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.wikipedia.org\/*",
                "*:\/\/*.mediawiki.org\/*",
                "*:\/\/*.wikimedia.org\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "icons": {
        "48": "img\/enable.png"
    },
    "web_accessible_resources": [
        "\/img\/128x128.png"
    ]
}