NetBrain Extension

NetBrain Extension

Was ist NetBrain Extension?

NetBrain Extension ist eine Chrome-Erweiterung, die von NetBrain entwickelt wurde, und ihr Hauptmerkmal ist "NetBrain Extension".

Erweiterungsscreenshots

screenshot
screenshot

NetBrain Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie NetBrain Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name NetBrain Extension NetBrain Extension
ID malinpkfecnmopigcdnlacnpgjoffhlc
Offizielle URL https://chromewebstore.google.com/detail/netbrain-extension/malinpkfecnmopigcdnlacnpgjoffhlc
Beschreibung NetBrain Extension
Dateigröße 36.11 KB
Installationsanzahl 722
Aktuelle Version 1.0.1
Letztes Update 2024-01-05
Veröffentlichungsdatum 2021-03-03
Entwickler NetBrain
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}