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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}