Dark Scrollbar

Adds color-scheme light dark meta tag to allow UI elements to match OS theme.

Dark Scrollbar란 무엇입니까?

Dark Scrollbar은(는) Petroz Wellnai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds color-scheme light dark meta tag to allow UI elements to match OS theme."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Forces UI elements such as scrollbars and form fields to match either your operating system's theme, or your own theme by choice, light or dark.                    

확장 프로그램 기본 정보

이름 Dark Scrollbar Dark Scrollbar
ID eafmdhegblfeilejhmieheapmlpdeklm
공식 URL https://chromewebstore.google.com/detail/dark-scrollbar/eafmdhegblfeilejhmieheapmlpdeklm
설명 Adds color-scheme light dark meta tag to allow UI elements to match OS theme.
파일 크기 11.33 KB
설치 횟수 1,117
현재 버전 1.1
최근 업데이트 2022-05-21
출시 날짜 2021-01-04
평점 4.64/5 총 14 개의 평점
개발자 Petroz Wellnai
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dark Scrollbar",
    "version": "1.1",
    "description": "Adds color-scheme light dark meta tag to allow UI elements to match OS theme.",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "vertical-scrolling16.png",
        "32": "vertical-scrolling32.png",
        "48": "vertical-scrolling48.png",
        "128": "vertical-scrolling128.png"
    },
    "manifest_version": 2
}