Bubble cursor

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

Was ist Bubble cursor?

Bubble cursor ist eine Chrome-Erweiterung, die von Floatas entwickelt wurde, und ihr Hauptmerkmal ist "The bubble cursor dynamically resizes its size to make sure that one target is always selectable.".

Erweiterungsscreenshots

screenshot

Bubble cursor-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bubble cursor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Bubble cursor Bubble cursor
ID golhgkieibedhlnmehiceamjhbfnmfdm
Offizielle URL https://chrome.google.com/webstore/detail/bubble-cursor/golhgkieibedhlnmehiceamjhbfnmfdm
Beschreibung The bubble cursor dynamically resizes its size to make sure that one target is always selectable.
Dateigröße 22.47 KB
Installationsanzahl 38
Aktuelle Version 1.0
Letztes Update 2018-11-13
Veröffentlichungsdatum 2018-11-08
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler Floatas
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/floatas/BubbleCursor
Unterstützte Sprachen 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"
    }
}