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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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