Leftside Back

Allows you to navigate back by just hitting the mouse on the left or right side of your screen.

Leftside Back क्या है?

Leftside Back Philipp König द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to navigate back by just hitting the mouse on the left or right side of your screen."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

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

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

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

                        ---- NOTICE ------
Due to security restrictions, the extension is not working in the Chrome Webstore. So to test the extension simple navigate to another website, where everything should work fine :)
---------------------

This extension turns your left side of your browser window into a large back button. It allows you to navigate back by just clicking your mouse button on the left side of your screen. You can configure whether to display an indicator bar, increasing the width of the tolerance area or enabling to also navigate forward by right clicking the edge of the browser window.                    

एक्सटेंशन की मूल जानकारी

नाम Leftside Back Leftside Back
ID gdcddfacdedphcamippdkojfngoakglg
आधिकारिक URL https://chromewebstore.google.com/detail/leftside-back/gdcddfacdedphcamippdkojfngoakglg
विवरण Allows you to navigate back by just hitting the mouse on the left or right side of your screen.
फ़ाइल का आकार 30.82 KB
स्थापना संख्या 1,116
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2023-01-25
प्रकाशन तिथि 2020-05-22
रेटिंग 4.53/5 कुल 19 रेटिंग्स
डेवलपर Philipp König
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://extensions.redeviation.com/
गोपनीयता नीति पृष्ठ URL https://extensions.redeviation.com/privacy
समर्थित भाषाएँ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extension_name__",
    "short_name": "__MSG_extension_name__",
    "description": "__MSG_extension_desc__",
    "default_locale": "en",
    "version": "2.0.0",
    "version_name": "2.0.0",
    "minimum_chrome_version": "109",
    "homepage_url": "https:\/\/extensions.redeviation.com\/",
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "css": [
                "css\/style.css"
            ],
            "js": [
                "js\/extension.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_icon": "img\/icon\/128x128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "img\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_ui": {
        "page": "html\/settings.html",
        "open_in_tab": true
    },
    "icons": {
        "256": "img\/icon\/256x256.png",
        "128": "img\/icon\/128x128.png",
        "48": "img\/icon\/48x48.png"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ]
}