Vimium Canary

This is the development branch of Vimium (it is beta software).

Co je Vimium Canary?

Vimium Canary je rozšíření Chrome vyvinuté Stephen Blott, a jeho hlavní funkcí je „This is the development branch of Vimium (it is beta software).“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Vimium Canary

Stáhněte si soubory rozšíření Vimium Canary ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This is the development branch of Vimium.  It is typically ahead of the official release by a number of bug fixes and new features.  However, it may also be unreliable.

(Note: name changed from "Vimium Dev" to "Vimium Canary", which better describes its purpose.)                    

Základní Informace o Rozšíření

Název Vimium Canary Vimium Canary
ID bacenjioemhlemhbojkoiddopgbhgiah
Oficiální URL https://chrome.google.com/webstore/detail/vimium-canary/bacenjioemhlemhbojkoiddopgbhgiah
Popis This is the development branch of Vimium (it is beta software).
Velikost souboru 233 KB
Počet instalací 49
Aktuální Verze 1.64.6
Poslední Aktualizace 2019-05-19
Datum Vydání 2019-05-19
Vývojář Stephen Blott
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/philc/vimium/issues
URL Stránky Nápovědy https://github.com/philc/vimium/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Vimium Canary",
    "version": "1.64.6",
    "description": "This is the development branch of Vimium (it is beta software).",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "minimum_chrome_version": "51.0",
    "background": {
        "scripts": [
            "lib\/utils.js",
            "lib\/settings.js",
            "background_scripts\/bg_utils.js",
            "background_scripts\/commands.js",
            "background_scripts\/exclusions.js",
            "background_scripts\/completion_engines.js",
            "background_scripts\/completion_search.js",
            "background_scripts\/completion.js",
            "background_scripts\/marks.js",
            "background_scripts\/main.js"
        ]
    },
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "permissions": [
        "tabs",
        "bookmarks",
        "history",
        "clipboardRead",
        "storage",
        "sessions",
        "notifications",
        "webNavigation",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/utils.js",
                "lib\/keyboard_utils.js",
                "lib\/dom_utils.js",
                "lib\/rect.js",
                "lib\/handler_stack.js",
                "lib\/settings.js",
                "lib\/find_mode_history.js",
                "content_scripts\/mode.js",
                "content_scripts\/ui_component.js",
                "content_scripts\/link_hints.js",
                "content_scripts\/vomnibar.js",
                "content_scripts\/scroller.js",
                "content_scripts\/marks.js",
                "content_scripts\/mode_insert.js",
                "content_scripts\/mode_find.js",
                "content_scripts\/mode_key_handler.js",
                "content_scripts\/mode_visual.js",
                "content_scripts\/hud.js",
                "content_scripts\/mode_normal.js",
                "content_scripts\/vimium_frontend.js"
            ],
            "css": [
                "content_scripts\/vimium.css"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts\/injected.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        },
        {
            "matches": [
                "file:\/\/\/",
                "file:\/\/\/*\/"
            ],
            "css": [
                "content_scripts\/file_urls.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "icons\/browser_action_disabled.png",
        "default_popup": "pages\/popup.html"
    },
    "web_accessible_resources": [
        "pages\/vomnibar.html",
        "content_scripts\/vimium.css",
        "pages\/hud.html",
        "pages\/help_dialog.html",
        "pages\/completion_engines.html"
    ]
}