Drag to Go Back

Navigate Browser (Back/Forward) by Wheel-Click Dragging

Drag to Go Back क्या है?

Drag to Go Back June Shim द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Navigate Browser (Back/Forward) by Wheel-Click Dragging"।

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

screenshot

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

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

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

                        This extension is for those who use a mouse with only three buttons. (primary, secondary and wheel)

With other input devices such as 5-button mouse or Apple's trackpad and magic mouse, navigating pages (Go back/forward) in the browser is seamless. This extension solves problem for easy navigation with a 3-button mouse.

Just like swiping the trackpad to go back/forward, user can wheel-click then drag horizontally to go back/forward. (Drag to the right - Go Back a Page, Drag to the left - Go Forward a Page)

User has options to change the drag threshold length (in pixels). (e.g. if user wants dragging to be shorter, they can change settings in options page)

The source code for this extension can be found at https://github.com/j-shim/drag-to-go-back.                    

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

नाम Drag to Go Back Drag to Go Back
ID ikcphihdleoaocpmbcdcdajfiioafmae
आधिकारिक URL https://chromewebstore.google.com/detail/drag-to-go-back/ikcphihdleoaocpmbcdcdajfiioafmae
विवरण Navigate Browser (Back/Forward) by Wheel-Click Dragging
फ़ाइल का आकार 11.08 KB
स्थापना संख्या 45
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2020-08-23
प्रकाशन तिथि 2020-08-22
डेवलपर June Shim
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/j-shim/drag-to-go-back
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Drag to Go Back",
    "version": "1.0.0",
    "description": "Navigate Browser (Back\/Forward) by Wheel-Click Dragging",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "page_action": {
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    }
}