Drag to Go Back

Navigate Browser (Back/Forward) by Wheel-Click Dragging

Drag to Go Back란 무엇입니까?

Drag to Go Back은(는) June Shim에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Navigate Browser (Back/Forward) by Wheel-Click Dragging"입니다.

확장 프로그램 스크린샷

screenshot

Drag to Go Back 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension is for those who use a mouse with only three buttons. (primary, secondary and wheel)

With other input devices such as 5-button mouse or Apple's trackpad and magic mouse, navigating pages (Go back/forward) in the browser is seamless. This extension solves problem for easy navigation with a 3-button mouse.

Just like swiping the trackpad to go back/forward, user can wheel-click then drag horizontally to go back/forward. (Drag to the right - Go Back a Page, Drag to the left - Go Forward a Page)

User has options to change the drag threshold length (in pixels). (e.g. if user wants dragging to be shorter, they can change settings in options page)

The source code for this extension can be found at https://github.com/j-shim/drag-to-go-back.                    

확장 프로그램 기본 정보

이름 Drag to Go Back Drag to Go Back
ID ikcphihdleoaocpmbcdcdajfiioafmae
공식 URL https://chromewebstore.google.com/detail/drag-to-go-back/ikcphihdleoaocpmbcdcdajfiioafmae
설명 Navigate Browser (Back/Forward) by Wheel-Click Dragging
파일 크기 11.08 KB
설치 횟수 45
현재 버전 1.0.0
최근 업데이트 2020-08-23
출시 날짜 2020-08-22
개발자 June Shim
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/j-shim/drag-to-go-back
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Drag to Go Back",
    "version": "1.0.0",
    "description": "Navigate Browser (Back\/Forward) by Wheel-Click Dragging",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "page_action": {
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    }
}