Bubble cursor

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

O que é Bubble cursor?

Bubble cursor é uma extensão do Chrome desenvolvida por Floatas, e sua principal característica é "The bubble cursor dynamically resizes its size to make sure that one target is always selectable.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Bubble cursor

Baixe arquivos de extensão Bubble cursor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Bubble cursor Bubble cursor
ID golhgkieibedhlnmehiceamjhbfnmfdm
URL Oficial https://chrome.google.com/webstore/detail/bubble-cursor/golhgkieibedhlnmehiceamjhbfnmfdm
Descrição The bubble cursor dynamically resizes its size to make sure that one target is always selectable.
Tamanho do Arquivo 22.47 KB
Contagem de Instalações 38
Versão Atual 1.0
Última Atualização 2018-11-13
Data de Publicação 2018-11-08
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor Floatas
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/floatas/BubbleCursor
Idiomas Suportados 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"
    }
}