Smart Dark Mode

Does not use heavy codes. It doesn't break the web design. Detects only bright sites and invert them to dark sites.

Smart Dark Mode란 무엇입니까?

Smart Dark Mode은(는) ndaesik에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Does not use heavy codes. It doesn't break the web design. Detects only bright sites and invert them to dark sites."입니다.

확장 프로그램 스크린샷

screenshot

Smart Dark Mode 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        - All elements are displayed normally.
- The script is light.
- Dark pages do not convert.
- Easy to add/remove filters.                    

확장 프로그램 기본 정보

이름 Smart Dark Mode Smart Dark Mode
ID mpdjakileikddgilaegaijhmfhendcji
공식 URL https://chromewebstore.google.com/detail/smart-dark-mode/mpdjakileikddgilaegaijhmfhendcji
설명 Does not use heavy codes. It doesn't break the web design. Detects only bright sites and invert them to dark sites.
파일 크기 41.16 KB
설치 횟수 226
현재 버전 1
최근 업데이트 2022-05-31
출시 날짜 2022-05-31
개발자 ndaesik
이메일 [email protected]
결제 유형 free
지원되는 언어 id,de,en,fr,nl,vi,tr,da,es,hr,it,hu,pl,pt-BR,pt-PT,sk,cs,sr,ru,uk,hi,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "permissions": [
        "storage",
        "activeTab",
        "background"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "css": [
                "content_scripts\/css.css"
            ],
            "js": [
                "content_scripts\/script.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    }
}