Tablet Gestures

Use 2 finger swipes to control your browser. Supports 8 directions with configurable actions. Tablet optimized.

Tablet Gestures란 무엇입니까?

Tablet Gestures은(는) em_te에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use 2 finger swipes to control your browser. Supports 8 directions with configurable actions. Tablet optimized."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Tablet Gestures 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A device with a multi-touch screen (such as a tablet) is required.

Supported actions include:

- open a new tab
- close current tab
- go to left tab
- go to right tab
- go back in current page
- go forward in current page
- duplicate current tab
- reload current tab

The default configuration is:

- open new tab on "up" gesture
- close current tab on "down" gesture
- focus left tab on diagonal "top-left" gesture or diagonal "bottom-left" gesture
- focus right tab on diagonal "bottom-right" gesture or diagonal "top-right" gesture


The gesture is only recognized if your fingers move in parallel in the same direction. If you do "pinches", it will not respond, because the pinch is reserved for zooming the page.

You can also configure how many fingers are required to perform gestures in case 2 fingers is too easy to accidentally activate.

You can also configure how long the fingers need to travel (in pixels) before a gesture is recognized. The default is 110 pixels which is suitable for medium-sized devices.

You don't need to lift your fingers at the end for the gesture to recognize. Just keep moving them in the desired direction and once it reaches the threshold the gesture will activate automatically.                    

확장 프로그램 기본 정보

이름 Tablet Gestures Tablet Gestures
ID adpfjochlgeifbpfnlchcdcmoaafnoim
공식 URL https://chromewebstore.google.com/detail/tablet-gestures/adpfjochlgeifbpfnlchcdcmoaafnoim
설명 Use 2 finger swipes to control your browser. Supports 8 directions with configurable actions. Tablet optimized.
파일 크기 16.75 KB
설치 횟수 972
현재 버전 0.1.1
최근 업데이트 2021-02-08
출시 날짜 2020-02-04
평점 2.52/5 총 21 개의 평점
개발자 em_te
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://em-te.github.io/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tablet Gestures",
    "author": "Terry Yuen",
    "version": "0.1.1",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "24": "icon_24.png",
        "38": "icon_38.png",
        "48": "icon_48.png",
        "96": "icon_96.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "browser_action": {
        "default_icon": {
            "24": "icon_24.png",
            "38": "icon_38.png",
            "48": "icon_48.png",
            "96": "icon_96.png"
        }
    }
}