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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में IP Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}