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

Qu'est-ce que IP Blocker ?

IP Blocker est une extension Chrome développée par IP Blocker, et sa fonction principale est "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".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension IP Blocker

Téléchargez les fichiers d'extension IP Blocker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom IP Blocker IP Blocker
ID ofjjgidcleppjggfabdloemoidoponmp
URL Officiel https://chromewebstore.google.com/detail/ip-blocker/ofjjgidcleppjggfabdloemoidoponmp
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
Taille du Fichier 15.7 KB
Nombre d'Installations 9,679
Version Actuelle 1.0.0
Dernière Mise à Jour 2023-04-19
Date de Publication 2023-04-09
Développeur IP Blocker
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}