NetBrain Extension

NetBrain Extension

NetBrain Extension là gì?

NetBrain Extension là một tiện ích mở rộng Chrome được phát triển bởi NetBrain, và tính năng chính của nó là "NetBrain Extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng NetBrain Extension

Tải xuống các tệp mở rộng NetBrain Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NetBrain Extension NetBrain Extension
ID malinpkfecnmopigcdnlacnpgjoffhlc
URL Chính Thức https://chromewebstore.google.com/detail/netbrain-extension/malinpkfecnmopigcdnlacnpgjoffhlc
Mô tả NetBrain Extension
Kích Thước Tệp 36.11 KB
Số Lần Cài Đặt 722
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2024-01-05
Ngày Phát Hành 2021-03-03
Nhà Phát Triển NetBrain
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}