IP Blocker

Blocks all request to IP addresses. You have the option to allow all private IP addresses and to add IP addresses to an allow list

IP Blocker란 무엇입니까?

IP Blocker은(는) IP Blocker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blocks all request to IP addresses. You have the option to allow all private IP addresses and to add IP addresses to an allow list"입니다.

확장 프로그램 스크린샷

screenshot

IP Blocker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension is designed for people who deal with possible malicious IP addresses. The extension will stop you from accidentally searching for an IP address as it will stop the connection at the browser stage so there are no outbound connections to the IP address, this would be useful if you regularly have malicious IP addresses in your clipboard. 

The extension allows you to enable private IP addresses and to add IP addresses to an allow list so if you regularly go to a certain IP address you don’t have to disable the extension to go to it.
 
If you’re interested in the code, then please find the GitHub repository below:
https://github.com/conesplitter/IP-Blocker-Extension                    

확장 프로그램 기본 정보

이름 IP Blocker IP Blocker
ID ofjjgidcleppjggfabdloemoidoponmp
공식 URL https://chromewebstore.google.com/detail/ip-blocker/ofjjgidcleppjggfabdloemoidoponmp
설명 Blocks all request to IP addresses. You have the option to allow all private IP addresses and to add IP addresses to an allow list
파일 크기 15.7 KB
설치 횟수 9,679
현재 버전 1.0.0
최근 업데이트 2023-04-19
출시 날짜 2023-04-09
개발자 IP Blocker
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IP Blocker",
    "description": "Blocks all request to IP addresses. You have the option to allow all private IP addresses and to add IP addresses to an allow list",
    "manifest_version": 3,
    "version": "1.0.0",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "action": {
        "default_title": "IP Blocker",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/favicon16.png",
            "32": "\/images\/favicon32.png",
            "48": "\/images\/icon48.png",
            "128": "\/images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/favicon16.png",
        "32": "images\/favicon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}