Vimium Helper

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

Vimium Helper란 무엇입니까?

Vimium Helper은(는) Tyler Elliott에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Let Vimuim see even more elements to add click hints to."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Vimium Helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Vimium Helper Vimium Helper
ID cmlapekgcdddhkfcobppgamdgjbkoffm
공식 URL https://chromewebstore.google.com/detail/vimium-helper/cmlapekgcdddhkfcobppgamdgjbkoffm
설명 Let Vimuim see even more elements to add click hints to.
파일 크기 11.56 KB
설치 횟수 223
현재 버전 1.0.3
최근 업데이트 2020-12-01
출시 날짜 2020-06-02
평점 5.00/5 총 1 개의 평점
개발자 Tyler Elliott
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tylercal/vimium-helper
도움말 페이지 URL https://github.com/tylercal/vimium-helper/issues
지원되는 언어 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"
            ]
        }
    ]
}