Special Dark

Darkens bright pages. Love your eyes and your power bill.

Special Darkとは何ですか?

Special DarkはEonasdanによって開発されたChromeの拡張機能で、その主な機能は「Darkens bright pages. Love your eyes and your power bill.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Special Dark拡張機能のCRXファイルをダウンロード

Special Dark拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        ##Changes 1.8.0
- Fixed issue with github comment text.
- Replace github styles without backgrounnd image and a more updated sheet.
- Dropped Twitter styles since Twitter now has a dark theme.

## Features:
 - Includes a few special site specific styles such as:
   - Facebook
   - Amazon
   - Github
   - Stack Exchange

I realize that Stylish exists and is useful for styling individual sites, however I think that Special Dark works well for most sites with a few exceptions.                    

拡張機能の基本情報

名前 Special Dark Special Dark
ID koifkokhhgjemendlnlaellpdeppkbmi
公式URL https://chromewebstore.google.com/detail/special-dark/koifkokhhgjemendlnlaellpdeppkbmi
説明 Darkens bright pages. Love your eyes and your power bill.
ファイルサイズ 99.18 KB
インストール数 635
現在のバージョン 1.8.0
最終更新日 2019-09-22
公開日 2019-09-22
評価 3.72/5 合計 25 レビュー
開発者 Eonasdan
支払い方法 free
拡張機能のウェブサイト https://github.com/Eonasdan/specialdark
対応言語 en-US
manifest.json
{
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon38.png",
        "default_title": "Toggle dark theme"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "client.js"
            ],
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Darkens bright pages. Love your eyes and your power bill.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "manifest_version": 2,
    "name": "Special Dark",
    "options_page": "options.html",
    "short_name": "Special Dark",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.8.0",
    "web_accessible_resources": [
        "*"
    ]
}