Autovim

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

What is Autovim?

Autovim is a Chrome extension developed by Unknown, and its main feature is "Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.".

Extension Screenshots

screenshot

Download Autovim Extension CRX File

Download Autovim 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

                                            

Extension Basic Information

Name Autovim Autovim
ID licohjbphilmljmjonhiifkldfahnmja
Official URL https://chromewebstore.google.com/detail/autovim/licohjbphilmljmjonhiifkldfahnmja
Description Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.
File Size 28 KB
Installation Count 253
Current Version 0.1
Last Updated 2018-04-12
Publish Date 2018-04-12
Rating 4.67/5 Total 6 Ratings
Developer Unknown
Payment Type free
Supported Languages 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"
    ]
}