Hand Tool for browser

Will enable you to scroll by dragging while holding down the space key, just like photo processing or illustration creation apps.

Hand Tool for browser란 무엇입니까?

Hand Tool for browser은(는) https://heppokofrontend.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Will enable you to scroll by dragging while holding down the space key, just like photo processing or illustration creation apps."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Hand Tool for browser 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        By clicking on the browser extension icon, you can switch the keys required for this function.

Pattern A: "Space" only
Pattern B: "Space + Shift + Ctrl (or Cmd for macOS)"

In Pattern A, pressing the "Space key" while holding down the "Ctrl key (or Command)" scrolls down.
If you hold down the "Shift key", it scrolls up.

In Pattern B, if the "Ctrl key (or Command key)" is not pressed, the browser's standard behavior allows scrolling.

* It is recommended to restart your browser once after installing this extension.                    

확장 프로그램 기본 정보

이름 Hand Tool for browser Hand Tool for browser
ID pjoggomlkaanadbegagokiioonfaedle
공식 URL https://chromewebstore.google.com/detail/hand-tool-for-browser/pjoggomlkaanadbegagokiioonfaedle
설명 Will enable you to scroll by dragging while holding down the space key, just like photo processing or illustration creation apps.
파일 크기 12.96 KB
설치 횟수 130
현재 버전 1.1.2
최근 업데이트 2023-03-17
출시 날짜 2021-10-06
평점 4.00/5 총 1 개의 평점
개발자 https://heppokofrontend.dev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/heppokofrontend/chrome-extension-hand-tool
도움말 페이지 URL https://github.com/heppokofrontend/chrome-extension-hand-tool/issues
개인정보 보호 정책 페이지 URL https://gist.github.com/heppokofrontend/0247f1d697df2fd8e798320f403727e8
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "version": "1.1.2",
    "description": "__MSG_extDesc__",
    "action": {
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en"
}