SO Dark Chat +

Provides a new dark theme for stackoverflow chat.

Cos'è SO Dark Chat +?

SO Dark Chat + è un'estensione di Chrome sviluppata da rlemon, e la sua funzione principale è "Provides a new dark theme for stackoverflow chat.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione SO Dark Chat +

Scarica i file di estensione SO Dark Chat + 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

                        This is an ongoing development effort based on https://github.com/oliversalzburg/se-chat-dark-theme this adds some additional fixes and features (as well as a few modifications) to the existing stackoverflow chat interface. 

All new features and repository!  
User colours.  
Code Highlighting.   
Webm/Gifv oneboxing. 
Code Editor. 
And More!                    

Informazioni di Base sull'Estensione

Nome SO Dark Chat + SO Dark Chat +
ID bbkjccfnenmgidehjhaabamobpbaaghh
URL Ufficiale https://chromewebstore.google.com/detail/so-dark-chat-+/bbkjccfnenmgidehjhaabamobpbaaghh
Descrizione Provides a new dark theme for stackoverflow chat.
Dimensione del File 6.61 MB
Conteggio Installazioni 80
Versione Corrente 0.1.5
Ultimo Aggiornamento 2019-03-08
Data di Pubblicazione 2019-03-08
Valutazione 4.85/5 Totale 13 Valutazioni
Sviluppatore rlemon
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/rlemon/se-chat-dark-theme-plus
URL della Pagina di Aiuto https://github.com/rlemon/se-chat-dark-theme-plus/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SO Dark Chat +",
    "description": "Provides a new dark theme for stackoverflow chat.",
    "version": "0.1.5",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.stackoverflow.com\/*",
                "*:\/\/chat.stackexchange.com\/*",
                "*:\/\/chat.meta.stackexchange.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "css\/style.css",
                "CodeMirror\/css\/codemirror.css",
                "CodeMirror\/css\/monokai.css"
            ]
        }
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "img\/icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "js\/*.js",
        "css\/*.css",
        "images\/*.svg",
        "CodeMirror\/*",
        "CodeMirror\/*\/*"
    ]
}