Go Back With Backspace

Re-enables the backspace key as a back navigation button (except when writing text).

Go Back With Backspace क्या है?

Go Back With Backspace https://thorium.rocks द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Re-enables the backspace key as a back navigation button (except when writing text)."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Chromium/Chrome extension which re-enables the backspace key as a back navigation button (except when writing text).
 – It is a fork of https://chrome.google.com/webstore/detail/go-back-with-backspace/eekailopagacbcdloonjhbiecobagjci updated to Manifest V3, with small CSS and icon fixes.

 - Alex313031                    

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

नाम Go Back With Backspace Go Back With Backspace
ID pgmlidkcpfcjeeenlbkfmagkeclinnkh
आधिकारिक URL https://chromewebstore.google.com/detail/go-back-with-backspace/pgmlidkcpfcjeeenlbkfmagkeclinnkh
विवरण Re-enables the backspace key as a back navigation button (except when writing text).
फ़ाइल का आकार 372 KB
स्थापना संख्या 896
वर्तमान संस्करण 3.0.2
अंतिम अपडेट 2023-06-20
प्रकाशन तिथि 2023-03-09
रेटिंग 4.50/5 कुल 2 रेटिंग्स
डेवलपर https://thorium.rocks
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Alex313031/Chromium-Backspace
सहायता पृष्ठ URL https://github.com/Alex313031/Chromium-Backspace/issues
गोपनीयता नीति पृष्ठ URL https://thorium.rocks/COC.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "short_name": "__MSG_extensionShortName__",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "version": "3.0.2",
    "version_name": "3.0.2",
    "offline_enabled": true,
    "manifest_version": 3,
    "minimum_chrome_version": "91",
    "author": {
        "email": "[email protected]"
    },
    "homepage_url": "https:\/\/github.com\/Alex313031\/Chromium-Backspace",
    "icons": {
        "16": "icons\/icon_16.png",
        "24": "icons\/icon_24.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "pages\/popup.html",
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "is_editable.js",
                "content_script.js"
            ],
            "all_frames": true,
            "match_origin_as_fallback": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "pages\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "management",
        "scripting",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        ""
    ]
}