NetBrain Extension

NetBrain Extension

Cos'è NetBrain Extension?

NetBrain Extension è un'estensione di Chrome sviluppata da NetBrain, e la sua funzione principale è "NetBrain Extension".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione NetBrain Extension

Scarica i file di estensione NetBrain Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome NetBrain Extension NetBrain Extension
ID malinpkfecnmopigcdnlacnpgjoffhlc
URL Ufficiale https://chromewebstore.google.com/detail/netbrain-extension/malinpkfecnmopigcdnlacnpgjoffhlc
Descrizione NetBrain Extension
Dimensione del File 36.11 KB
Conteggio Installazioni 722
Versione Corrente 1.0.1
Ultimo Aggiornamento 2024-01-05
Data di Pubblicazione 2021-03-03
Sviluppatore NetBrain
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}