Orange Mode

Browse the web in orange.

What is Orange Mode?

Orange Mode is a Chrome extension developed by elliottcost, and its main feature is "Browse the web in orange.".

Extension Screenshots

screenshot

Download Orange Mode Extension CRX File

Download Orange Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Orange Mode Orange Mode
ID mepnacjaekohjgikgdefcedghipcdbfa
Official URL https://chromewebstore.google.com/detail/orange-mode/mepnacjaekohjgikgdefcedghipcdbfa
Description Browse the web in orange.
File Size 8.01 KB
Installation Count 53
Current Version 0.1
Last Updated 2021-11-16
Publish Date 2021-11-16
Rating 3.67/5 Total 3 Ratings
Developer elliottcost
Email [email protected]
Payment Type free
Extension Website http://elliott.computer/pages/orange-mode
Help Page URL http://elliott.computer/pages/orange-mode
Supported Languages 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"
            ]
        }
    ]
}