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文件

下载GitHub Dark Theme扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        # 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\/*"
            ]
        }
    ]
}