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
官方網址 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
        }
    ]
}