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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Mile Wide Back एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    }
}