NetBrain Extension

NetBrain Extension

NetBrain Extension क्या है?

NetBrain Extension NetBrain द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "NetBrain Extension"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

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

crx प्रारूप में NetBrain Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम NetBrain Extension NetBrain Extension
ID malinpkfecnmopigcdnlacnpgjoffhlc
आधिकारिक URL https://chromewebstore.google.com/detail/netbrain-extension/malinpkfecnmopigcdnlacnpgjoffhlc
विवरण NetBrain Extension
फ़ाइल का आकार 36.11 KB
स्थापना संख्या 722
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2024-01-05
प्रकाशन तिथि 2021-03-03
डेवलपर NetBrain
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}