NetBrain Extension
NetBrain Extension
NetBrain Extensionとは何ですか?
NetBrain ExtensionはNetBrainによって開発されたChromeの拡張機能で、その主な機能は「NetBrain Extension」です。
拡張機能のスクリーンショット
NetBrain Extension拡張機能のCRXファイルをダウンロード
NetBrain Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" } } |