Vimium Helper

Let Vimuim see even more elements to add click hints to.

Vad är Vimium Helper?

Vimium Helper är en Chrome-tillägg utvecklad av Tyler Elliott, och dess huvudfunktion är "Let Vimuim see even more elements to add click hints to.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Vimium Helper-förlängningens CRX-fil

Ladda ner Vimium Helper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Vimium is a great browser tool that lets you use chrome by mainly using your keyboard. But it doesn't catch everything you can click. This extension finds elements that Vimium might miss and adds an extra hint so that you can click more things on the page.

Release Notes:
1.0.3 - Fix bug around the way ignored websites are handled.
1.0.2 - Add rate limiter to improve performance on sites with rapid changes.                    

Grundläggande Information om Tillägg

Namn Vimium Helper Vimium Helper
ID cmlapekgcdddhkfcobppgamdgjbkoffm
Officiell webbadress https://chromewebstore.google.com/detail/vimium-helper/cmlapekgcdddhkfcobppgamdgjbkoffm
Beskrivning Let Vimuim see even more elements to add click hints to.
Filstorlek 11.56 KB
Antal Installationer 223
Aktuell Version 1.0.3
Senast Uppdaterad 2020-12-01
Publiceringsdatum 2020-06-02
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Tyler Elliott
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/tylercal/vimium-helper
Hjälpsida URL https://github.com/tylercal/vimium-helper/issues
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Vimium Helper",
    "description": "Let Vimuim see even more elements to add click hints to.",
    "version": "1.0.3",
    "offline_enabled": true,
    "icons": {
        "16": "images\/logo-16.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/logo-16.png",
            "48": "images\/logo-48.png",
            "128": "images\/logo-128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}