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 là gì?

Block Browser Back Blocker là một tiện ích mở rộng Chrome được phát triển bởi https://niny.dev, và tính năng chính của nó là "This extension allows you to force a return to the previous page on sites that pop up when you press the back button.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Block Browser Back Blocker

Tải xuống các tệp mở rộng Block Browser Back Blocker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Block Browser Back Blocker Block Browser Back Blocker
ID ljmgniehpaonmcjdpoaliodmimahokmb
URL Chính Thức https://chromewebstore.google.com/detail/block-browser-back-blocke/ljmgniehpaonmcjdpoaliodmimahokmb
Mô tả This extension allows you to force a return to the previous page on sites that pop up when you press the back button.
Kích Thước Tệp 247 KB
Số Lần Cài Đặt 79
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2024-03-02
Ngày Phát Hành 2023-04-17
Nhà Phát Triển https://niny.dev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}