Autovim

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

Wat is Autovim?

Autovim is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Autovim

Download Autovim-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                                            

Basisinformatie over de Extensie

Naam Autovim Autovim
ID licohjbphilmljmjonhiifkldfahnmja
Officiële URL https://chromewebstore.google.com/detail/autovim/licohjbphilmljmjonhiifkldfahnmja
Beschrijving Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.
Bestandsgrootte 28 KB
Aantal Installaties 253
Huidige Versie 0.1
Laatst Bijgewerkt 2018-04-12
Publicatiedatum 2018-04-12
Beoordeling 4.67/5 Totaal 6 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
    ]
}