SimpleGestures

A very simple mouse gestures extension

SimpleGestures란 무엇입니까?

SimpleGestures은(는) junkfactory에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A very simple mouse gestures extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Very simple and base mouse gestures for chrome. Based from miniGestures extension completely simplified and open source. https://github.com/junkfactory/chrome-simple-gestures

0.5 - Improve open link in new tab - thanks Lars Brand
0.4 - Assign gestures to open custom urls in a new tab (beta)
0.3 - Add rocker gesture to switch between next or previous tab. (enable in options)
0.2 - Add app icon
0.1 - Initial release                    

확장 프로그램 기본 정보

이름 SimpleGestures SimpleGestures
ID cedlkmdalbapegbnlmfammochkpbheig
공식 URL https://chromewebstore.google.com/detail/simplegestures/cedlkmdalbapegbnlmfammochkpbheig
설명 A very simple mouse gestures extension
파일 크기 33.08 KB
설치 횟수 117
현재 버전 0.5
최근 업데이트 2024-02-25
출시 날짜 2021-07-12
평점 5.00/5 총 2 개의 평점
개발자 junkfactory
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/junkfactory/chrome-simple-gestures
도움말 페이지 URL https://github.com/junkfactory/chrome-simple-gestures/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SimpleGestures",
    "version": "0.5",
    "description": "A very simple mouse gestures extension",
    "action": {
        "default_title": "Click for SimpleGestures options",
        "default_popup": "options.html"
    },
    "icons": {
        "128": "app_icon.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib.js",
                "canvas.js",
                "simple_gestures.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}