Better Dark Mode

Give pages a better dark mode by avoiding things like full white text on full black background.

Better Dark Modeとは何ですか?

Better Dark Modeはfによって開発されたChromeの拡張機能で、その主な機能は「Give pages a better dark mode by avoiding things like full white text on full black background.」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        - Creates a dark mode of any page by inverting the original colors, background-colors, border-colors.
- Unlike most "dark modes," Better Dark Mode reduces eye-strain by not allowing any RGB values below 50 or above 200 by default.  Darkness and brightness limits can be customized by user.

Potential updates:
- Find a way to avoid flash of non-darkened page before extension runs on page load
- Store the active/inactive state as well as darkness/brightness limit variables Chrome-wide (currently using localStorage)                    

拡張機能の基本情報

名前 Better Dark Mode Better Dark Mode
ID ibkdocnpanhgcbbfadninaflpgjecmod
公式URL https://chromewebstore.google.com/detail/better-dark-mode/ibkdocnpanhgcbbfadninaflpgjecmod
説明 Give pages a better dark mode by avoiding things like full white text on full black background.
ファイルサイズ 32.05 KB
インストール数 5,638
現在のバージョン 0.9.4
最終更新日 2017-09-23
公開日 2017-09-23
評価 3.46/5 合計 26 レビュー
開発者 f
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Dark Mode",
    "short_name": "Better Dark",
    "description": "Give pages a better dark mode by avoiding things like full white text on full black background.",
    "version": "0.9.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "insert.js"
            ]
        }
    ]
}