MouseNav

Use mousebuttons to navigate forward / backward

MouseNavとは何ですか?

MouseNavはKoalaBearによって開発されたChromeの拡張機能で、その主な機能は「Use mousebuttons to navigate forward / backward」です。

拡張機能のスクリーンショット

screenshot

MouseNav拡張機能のCRXファイルをダウンロード

MouseNav拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
        }
    ]
}