Bubble cursor

The bubble cursor dynamically resizes its size to make sure that one target is always selectable.

Bubble cursor란 무엇입니까?

Bubble cursor은(는) Floatas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The bubble cursor dynamically resizes its size to make sure that one target is always selectable."입니다.

확장 프로그램 스크린샷

screenshot

Bubble cursor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Bubble cursor is based "The Bubble Cursor" research paper written by Tovi Grossman and Ravin Balkrishnan and published in 2005.

The bubble cursor is a target acquisition technique based on area cursors. The bubble cursor improves upon area cursors by dynamically resizing its activation area depending on the proximity of surrounding targets, such that only one target is selectable at any time. Empirical studies show that the bubble cursor significantly outperforms the point cursor, and that bubble cursor performance can be accurately modeled and predicted using Fitts' law.


Configuration 
a - show/hide visual grey bubble.
s - disable bubble cursor until page is refreshed.

All configuration can be changed in extension settings.                    

확장 프로그램 기본 정보

이름 Bubble cursor Bubble cursor
ID golhgkieibedhlnmehiceamjhbfnmfdm
공식 URL https://chrome.google.com/webstore/detail/bubble-cursor/golhgkieibedhlnmehiceamjhbfnmfdm
설명 The bubble cursor dynamically resizes its size to make sure that one target is always selectable.
파일 크기 22.47 KB
설치 횟수 38
현재 버전 1.0
최근 업데이트 2018-11-13
출시 날짜 2018-11-08
평점 1.00/5 총 1 개의 평점
개발자 Floatas
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/floatas/BubbleCursor
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bubble cursor",
    "version": "1.0",
    "description": "The bubble cursor dynamically resizes its size to make sure that one target is always selectable.",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "declarativeContent",
        "activeTab",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/vimium.js",
                "lib\/bubble.js"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}