Autovim

Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.

Cos'è Autovim?

Autovim è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Autovim

Scarica i file di estensione Autovim 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

                                            

Informazioni di Base sull'Estensione

Nome Autovim Autovim
ID licohjbphilmljmjonhiifkldfahnmja
URL Ufficiale https://chromewebstore.google.com/detail/autovim/licohjbphilmljmjonhiifkldfahnmja
Descrizione Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.
Dimensione del File 28 KB
Conteggio Installazioni 253
Versione Corrente 0.1
Ultimo Aggiornamento 2018-04-12
Data di Pubblicazione 2018-04-12
Valutazione 4.67/5 Totale 6 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.1",
    "name": "Autovim",
    "description": "Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.",
    "author": "Thomson Comer ",
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/colab.research.google.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_title": "Autovim",
        "default_icon": "icon_128.png"
    },
    "web_accessible_resources": [
        "autovim.js"
    ]
}