Orange Mode

Browse the web in orange.

Orange Modeとは何ですか?

Orange Modeはelliottcostによって開発されたChromeの拡張機能で、その主な機能は「Browse the web in orange.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Orange mode adds to orange tint to your browsing experience. It's like wearing sunglasses while you surf the web.                    

拡張機能の基本情報

名前 Orange Mode Orange Mode
ID mepnacjaekohjgikgdefcedghipcdbfa
公式URL https://chromewebstore.google.com/detail/orange-mode/mepnacjaekohjgikgdefcedghipcdbfa
説明 Browse the web in orange.
ファイルサイズ 8.01 KB
インストール数 53
現在のバージョン 0.1
最終更新日 2021-11-16
公開日 2021-11-16
評価 3.67/5 合計 3 レビュー
開発者 elliottcost
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://elliott.computer/pages/orange-mode
ヘルプページのURL http://elliott.computer/pages/orange-mode
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Orange Mode",
    "manifest_version": 2,
    "version": "0.1",
    "description": "Browse the web in orange.",
    "browser_action": [],
    "icons": {
        "16": "off.png",
        "48": "on.png",
        "128": "on.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "orange.js"
            ]
        }
    ]
}