Mile Wide Back

Allows you to quickly navigate your browser history and to switch between tabs by clicking on the left edge of your screen/window.

什麼是Mile Wide Back?

Mile Wide Back是由em_te開發的Chrome擴展程式,該擴展的主要功能是“Allows you to quickly navigate your browser history and to switch between tabs by clicking on the left edge of your screen/window.”。

擴展截圖

screenshot
screenshot
screenshot

下載Mile Wide Back擴展crx文件

下載Mile Wide Back擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The left edge of your browser window becomes a multi-purpose button. It is infinitely wide because your mouse can continue to travel left, while the cursor will remain stuck to the edge of the screen.

For optimal usability, please make sure that your window in maximized.

The trick is to fling your wrist to the left. No accuracy or coordination is needed here. You could even do this blind-folded.

Then proceed to left/middle/right click the mouse as desired or rotate your mouse wheel.

* Left click to navigate back
* Right click to navigate forward
* Middle-click to close the current tab
* Rotate the mouse wheel to cycle through your open tabs
* Left and right click at the same time to create a new tab

This extension doesn't work on the Browser's Settings page and the WebStore page, because of Chrome's security policy.

Unlike other mouse gesture extensions, this extension doesn't require you to hold the mouse button down while moving it, which means less coordination required!                    

擴展基本資訊

名稱 Mile Wide Back Mile Wide Back
ID fmgnifabmkdembnfmhppkflgamojpodf
官方網址 https://chromewebstore.google.com/detail/mile-wide-back/fmgnifabmkdembnfmhppkflgamojpodf
簡介 Allows you to quickly navigate your browser history and to switch between tabs by clicking on the left edge of your screen/window.
檔案大小 21.04 KB
安裝次數 733
目前版本 0.3
更新時間 2021-06-02
上架時間 2020-04-11
評分 4.33/5 共 9 次評分
開發者 em_te
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/em-te/webextensions-mile-wide-back
隱私政策頁面URL https://em-te.github.io/privacy
支援的語言 de,en,fr,nl,es,ru,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mile Wide Back",
    "author": "Terry",
    "version": "0.3",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 2,
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/em-te\/webextensions-mile-wide-back",
    "icons": {
        "24": "mile_wide_back_24.png",
        "30": "mile_wide_back_30.png",
        "48": "mile_wide_back_48.png",
        "96": "mile_wide_back_96.png"
    },
    "permissions": [
        "",
        "storage"
    ],
    "optional_permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.htm"
    }
}