NetBrain Extension

NetBrain Extension

Qu'est-ce que NetBrain Extension ?

NetBrain Extension est une extension Chrome développée par NetBrain, et sa fonction principale est "NetBrain Extension".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension NetBrain Extension

Téléchargez les fichiers d'extension NetBrain Extension 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 is a browser extension used by NetBrain product, which provides the ability to avoid opening duplicated pages.
The browser extension can check whether the opened page matches the new page to be opened by filter criteria. If it matches, the opened page will be kept for the next actions and the new page will not be opened repeatedly.                    

Informations de Base sur l'Extension

Nom NetBrain Extension NetBrain Extension
ID malinpkfecnmopigcdnlacnpgjoffhlc
URL Officiel https://chromewebstore.google.com/detail/netbrain-extension/malinpkfecnmopigcdnlacnpgjoffhlc
Description NetBrain Extension
Taille du Fichier 36.11 KB
Nombre d'Installations 722
Version Actuelle 1.0.1
Dernière Mise à Jour 2024-01-05
Date de Publication 2021-03-03
Développeur NetBrain
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NetBrain Extension",
    "version": "1.0.1",
    "description": "NetBrain Extension",
    "browser_action": {
        "default_title": "NetBrain Extension",
        "default_icon": "fav.png",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/netbrainnv.html?*"
            ],
            "js": [
                "self-find.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*\/netbrainnv.html?*"
            ],
            "js": [
                "page-find.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    }
}