Autovim

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

什么是Autovim?

Autovim是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.”。

扩展截图

screenshot

下载Autovim扩展crx文件

下载Autovim扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                                            

扩展基本信息

名称 Autovim Autovim
ID licohjbphilmljmjonhiifkldfahnmja
官方URL https://chromewebstore.google.com/detail/autovim/licohjbphilmljmjonhiifkldfahnmja
简介 Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.
文件大小 28 KB
安装次数 253
当前版本 0.1
更新时间 2018-04-12
上架时间 2018-04-12
评分 4.67/5 共6次评分
开发者 Unknown
付费类型 free
支持的语言 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"
    ]
}