Reg Search
Allows to search the DOM elements of a web page with regular expressions.
什麼是Reg Search?
Reg Search是由SFerrazLeite開發的Chrome擴展程式,該擴展的主要功能是“Allows to search the DOM elements of a web page with regular expressions.”。
擴展截圖
下載Reg Search擴展crx文件
下載Reg Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Allows to search the DOM elements of a web page with regular expressions. 擴展基本資訊
| 名稱 | |
| ID | ndnhmbfdiponmfjppfblcmbkcmjoibpf |
| 官方網址 | https://chromewebstore.google.com/detail/reg-search/ndnhmbfdiponmfjppfblcmbkcmjoibpf |
| 簡介 | Allows to search the DOM elements of a web page with regular expressions. |
| 檔案大小 | 82.07 KB |
| 安裝次數 | 63 |
| 目前版本 | 1.0 |
| 更新時間 | 2016-03-11 |
| 上架時間 | 2016-03-11 |
| 評分 | 4.00/5 共 1 次評分 |
| 開發者 | SFerrazLeite |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/SFerrazLeite/reg-search |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"scripts": [
"eventPage\/eventPage.js"
],
"persistent": false
},
"browser_action": {
"default_icon": {
"19": "images\/icon19.png",
"38": "images\/icon38.png"
},
"default_popup": "popup\/popup.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+F"
}
},
"next": {
"description": "Go to the next search result",
"suggested_key": {
"default": "Alt+N"
}
},
"prev": {
"description": "Go to the previous search result",
"suggested_key": {
"default": "Alt+P"
}
},
"copy": {
"description": "Copy search results as JSON array to clip board",
"suggested_key": {
"default": "Alt+C"
}
}
},
"content_scripts": [
{
"css": [
"content\/content.css"
],
"js": [
"content\/jquery.min.js",
"content\/content.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/\/*"
]
}
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png"
},
"manifest_version": 2,
"name": "Reg Search",
"options_page": "options\/options.html",
"permissions": [
"tabs",
"http:\/\/*\/*",
"clipboardWrite"
],
"version": "1.0"
} | |