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開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to force a return to the previous page on sites that pop up when you press the back button.”。

擴展截圖

screenshot

下載Block Browser Back Blocker擴展crx文件

下載Block Browser Back Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}