NetBrain Extension

NetBrain Extension

NetBrain Extension란 무엇입니까?

NetBrain Extension은(는) NetBrain에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "NetBrain Extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

NetBrain Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}