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 |
官方網址 | 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" } } |