Orange Mode

Browse the web in orange.

Cos'è Orange Mode?

Orange Mode è un'estensione di Chrome sviluppata da elliottcost, e la sua funzione principale è "Browse the web in orange.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Orange Mode

Scarica i file di estensione Orange Mode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Orange Mode Orange Mode
ID mepnacjaekohjgikgdefcedghipcdbfa
URL Ufficiale https://chromewebstore.google.com/detail/orange-mode/mepnacjaekohjgikgdefcedghipcdbfa
Descrizione Browse the web in orange.
Dimensione del File 8.01 KB
Conteggio Installazioni 53
Versione Corrente 0.1
Ultimo Aggiornamento 2021-11-16
Data di Pubblicazione 2021-11-16
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore elliottcost
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://elliott.computer/pages/orange-mode
URL della Pagina di Aiuto http://elliott.computer/pages/orange-mode
Lingue Supportate 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"
            ]
        }
    ]
}