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文件

下载Bubble cursor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}