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.

O que é Block Browser Back Blocker?

Block Browser Back Blocker é uma extensão do Chrome desenvolvida por https://niny.dev, e sua principal característica é "This extension allows you to force a return to the previous page on sites that pop up when you press the back button.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Block Browser Back Blocker

Baixe arquivos de extensão Block Browser Back Blocker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Block Browser Back Blocker Block Browser Back Blocker
ID ljmgniehpaonmcjdpoaliodmimahokmb
URL Oficial https://chromewebstore.google.com/detail/block-browser-back-blocke/ljmgniehpaonmcjdpoaliodmimahokmb
Descrição This extension allows you to force a return to the previous page on sites that pop up when you press the back button.
Tamanho do Arquivo 247 KB
Contagem de Instalações 79
Versão Atual 1.2.1
Última Atualização 2024-03-02
Data de Publicação 2023-04-17
Desenvolvedor https://niny.dev
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}