Mousetures

Mouse and rocker gestures for tab switching, closing, and reloading

什么是Mousetures?

Mousetures是由Dan Wendorf开发的Chrome扩展程序,该扩展的主要功能是“Mouse and rocker gestures for tab switching, closing, and reloading”。

下载Mousetures扩展crx文件

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

扩展使用说明

                        Close, refresh, and switch tabs with simple mouse gestures.

To close, hold the right mouse button, drag down, and release.
To refresh, hold the right mouse button, drag down then up, and release.

Switch tabs using mouse rocker gestures. To switch to the tab to the right of your current tab, hold the left mouse button and right-click. To switch to the tab to the left of your current tab, hold the right mouse button and left-click. To cycle through multiple tabs, keep holding the mouse button, and click repeatedly.                    

扩展基本信息

名称 Mousetures Mousetures
ID fadopffbmckhlapnajkgbgldgpcebfid
官方URL https://chrome.google.com/webstore/detail/mousetures/fadopffbmckhlapnajkgbgldgpcebfid
简介 Mouse and rocker gestures for tab switching, closing, and reloading
文件大小 9.03 KB
安装次数 36
当前版本 0.7.0
更新时间 2015-05-24
上架时间 2015-05-24
评分 4.17/5 共6次评分
开发者 Dan Wendorf
付费类型 free
扩展官网 https://github.com/wendorf/mousetures
帮助页面URL https://github.com/wendorf/mousetures/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mousetures",
    "description": "Mouse and rocker gestures for tab switching, closing, and reloading",
    "version": "0.7.0",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "actions.js",
            "background.js",
            "upgradeContentScripts.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "mouseEventGroup.js",
                "point.js",
                "moveGestures.js",
                "main.js",
                "upgradeContentScriptHelper.js",
                "gestureHandler.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}