MouseNav

Use mousebuttons to navigate forward / backward

MouseNav란 무엇입니까?

MouseNav은(는) KoalaBear에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use mousebuttons to navigate forward / backward"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        When you press and hold right mousebutton, then press and release left mousebutton it will navigate back.

When you press and hold Left mousebutton, then press and release right mousebutton it will do a forward.

2024-02-25 | 0.4.0
- Update to manifest version 3

2023-07-11 | 0.3.1
- Remove unused permissions as requested

2019-05-10 | 0.3.0
- Only check for video when double right clicking on a video so you can still left and right swipe on video

2018-10-23 | 0.2.0
- Don't close when right clicking on video to prevent user from using Picture in Picture
- Lowered right double clicking from 800ms to 600ms

2016-07-20 Quickly press right click two times to close current tab.
2016-07-20 Swipe with right mouse button down to right (300px), to go to the next tab
2016-07-20 Swipe with right mouse button down to left (300px), to go to the previous tab                    

확장 프로그램 기본 정보

이름 MouseNav MouseNav
ID jllbipnbabnkdljaaohccaklolilfddi
공식 URL https://chromewebstore.google.com/detail/mousenav/jllbipnbabnkdljaaohccaklolilfddi
설명 Use mousebuttons to navigate forward / backward
파일 크기 10.27 KB
설치 횟수 19
현재 버전 0.4.0
최근 업데이트 2024-02-26
출시 날짜 2019-05-10
개발자 KoalaBear
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.koalabear.nl
도움말 페이지 URL http://www.koalabear.nl
개인정보 보호 정책 페이지 URL https://koalabear.nl/geocachingdrivenotes/privacypolicy.php
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "MouseNav",
    "description": "Use mousebuttons to navigate forward \/ backward",
    "version": "0.4.0",
    "icons": {
        "48": "MouseNav48.png",
        "128": "MouseNav128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "MouseNav.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}