Bubble cursor

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

¿Qué es Bubble cursor?

Bubble cursor es una extensión de Chrome desarrollada por Floatas, y su función principal es "The bubble cursor dynamically resizes its size to make sure that one target is always selectable.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Bubble cursor

Descarga archivos de extensión Bubble cursor en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Bubble cursor Bubble cursor
ID golhgkieibedhlnmehiceamjhbfnmfdm
URL Oficial https://chrome.google.com/webstore/detail/bubble-cursor/golhgkieibedhlnmehiceamjhbfnmfdm
Descripción The bubble cursor dynamically resizes its size to make sure that one target is always selectable.
Tamaño del Archivo 22.47 KB
Cantidad de Instalaciones 38
Versión Actual 1.0
Última Actualización 2018-11-13
Fecha de Publicación 2018-11-08
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador Floatas
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/floatas/BubbleCursor
Idiomas Soportados 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"
    }
}