Dark by Default

Makes every page dark by default

Dark by Defaultとは何ですか?

Dark by DefaultはOliver Salzburgによって開発されたChromeの拡張機能で、その主な機能は「Makes every page dark by default」です。

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

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

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

拡張機能の使用方法

                        Temporarily makes any new page background black until the page is loaded.                    

拡張機能の基本情報

名前 Dark by Default Dark by Default
ID fjdgnklblnkfodhliojchndbhjomcnfh
公式URL https://chrome.google.com/webstore/detail/dark-by-default/fjdgnklblnkfodhliojchndbhjomcnfh
説明 Makes every page dark by default
ファイルサイズ 3.38 KB
インストール数 206
現在のバージョン 0.4
最終更新日 2016-11-08
公開日 2016-11-08
評価 2.40/5 合計 20 レビュー
開発者 Oliver Salzburg
拡張機能のウェブサイト https://github.com/oliversalzburg/dbd
ヘルプページのURL https://github.com/oliversalzburg/dbd/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dark by Default",
    "version": "0.4",
    "manifest_version": 2,
    "description": "Makes every page dark by default",
    "content_scripts": [
        {
            "exclude_globs": [],
            "exclude_matches": [],
            "include_globs": [
                "*"
            ],
            "js": [
                "dbd.user.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ]
}