top dark

simply make the web page look dark

top darkとは何ですか?

top darkはjessiejforemang33xによって開発されたChromeの拡張機能で、その主な機能は「simply make the web page look dark」です。

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

screenshot

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

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

拡張機能の使用方法

                        A very quick and simple dark mode for web pages
1) open web page example lipsum.com
2)click on extension icon to turn on dark mode                    

拡張機能の基本情報

名前 top dark top dark
ID nikmocloenleakdccdpldaephmkjekia
公式URL https://chrome.google.com/webstore/detail/top-dark/nikmocloenleakdccdpldaephmkjekia
説明 simply make the web page look dark
ファイルサイズ 59.75 KB
インストール数 2,000
現在のバージョン 0.1
最終更新日 2021-11-17
公開日 2021-11-17
評価 2.33/5 合計 3 レビュー
開発者 jessiejforemang33x
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "description": "simply make the web page look dark",
    "name": "top dark",
    "version": "0.1",
    "action": {
        "default_icon": "icons.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icons.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}