Autovim

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

Co to jest Autovim?

Autovim to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Autovim

Pobierz pliki rozszerzeń Autovim w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                                            

Podstawowe informacje o rozszerzeniu

Nazwa Autovim Autovim
ID licohjbphilmljmjonhiifkldfahnmja
Oficjalny URL https://chromewebstore.google.com/detail/autovim/licohjbphilmljmjonhiifkldfahnmja
Opis Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.
Rozmiar pliku 28 KB
Liczba instalacji 253
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2018-04-12
Data Publikacji 2018-04-12
Ocena 4.67/5 Łącznie 6 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
    ]
}