GitHub Dark Theme

A Dark theme for all of GitHub based on Atom One Dark.

GitHub Dark Theme란 무엇입니까?

GitHub Dark Theme은(는) LP Luxtra에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Dark theme for all of GitHub based on Atom One Dark."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        # About this extension.

This package will alternate appearance of all GitHub pages to dark theme with original GitHub themes. GitHub Dark Theme extension doesn't collect/share/care about your data at all.

Notice: dark theme applying for GitHub pages.

# Privacy Policy.

## Personal data.

GitHub Dark Theme had never collected and will never collect any personal data, browsing history etc.

In future GitHub Dark Theme may collect browser version, platform name, display settings and user's filter settings (except website list or any other data which can help identify user). This information is needed for decision on implementing new features, removing unused features or suggesting default settings for new users. It will happen only with your permission.                    

확장 프로그램 기본 정보

이름 GitHub Dark Theme GitHub Dark Theme
ID odkdlljoangmamjilkamahebpkgpeacp
공식 URL https://chromewebstore.google.com/detail/github-dark-theme/odkdlljoangmamjilkamahebpkgpeacp
설명 A Dark theme for all of GitHub based on Atom One Dark.
파일 크기 246 KB
설치 횟수 24,662
현재 버전 1.2.2
최근 업데이트 2023-06-13
출시 날짜 2020-06-24
평점 4.70/5 총 172 개의 평점
개발자 LP Luxtra
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://poychang.github.io/github-dark-theme/
도움말 페이지 URL https://github.com/poychang/github-dark-theme/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitHub Dark Theme",
    "short_name": "GitHub Dark Theme",
    "description": "A Dark theme for all of GitHub based on Atom One Dark.",
    "version": "1.2.2",
    "icons": {
        "16": "logo\/icon16.png",
        "48": "logo\/icon48.png",
        "128": "logo\/icon128.png"
    },
    "options_page": "settings\/settings.html",
    "action": [],
    "permissions": [
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/github.com\/*"
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "content_scripts": [
        {
            "js": [
                "foreground.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ]
}