Block Browser Back Blocker

This extension allows you to force a return to the previous page on sites that pop up when you press the back button.

Block Browser Back Blocker क्या है?

Block Browser Back Blocker https://niny.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to force a return to the previous page on sites that pop up when you press the back button."।

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

screenshot

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

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

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

                        This extension allows you to force a return to the previous page on sites that pop up when you press the back button.


In recent years, there are many sites that detect when the back button is pressed and display a pop-up to prevent users from leaving.

Since the user wants to leave the site when they press the back button, preventing them from doing so only detracts from the user experience.

This extension eliminates the hassle of not being able to return to the previous page after pressing the back button.                    

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

नाम Block Browser Back Blocker Block Browser Back Blocker
ID ljmgniehpaonmcjdpoaliodmimahokmb
आधिकारिक URL https://chromewebstore.google.com/detail/block-browser-back-blocke/ljmgniehpaonmcjdpoaliodmimahokmb
विवरण This extension allows you to force a return to the previous page on sites that pop up when you press the back button.
फ़ाइल का आकार 247 KB
स्थापना संख्या 79
वर्तमान संस्करण 1.2.1
अंतिम अपडेट 2024-03-02
प्रकाशन तिथि 2023-04-17
डेवलपर https://niny.dev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Block Browser Back Blocker",
    "version": "1.2.1",
    "default_locale": "en",
    "description": "__MSG_description__",
    "icons": {
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "96": "icons\/96.png"
    },
    "permissions": [
        "storage",
        "scripting",
        "webNavigation"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_icon": "icons\/48.png",
        "default_popup": "html\/popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "js\/inject\/disable-by-overriding.js",
                "js\/inject\/disable-by-force-back.js"
            ]
        }
    ]
}