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 |
| 公式URL | 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 |
| Eメール | [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"
} | |