Regex Extracter
Use regex to extract the text content you need from web page
Regex Extracterとは何ですか?
Regex Extracterはzhangbohunによって開発されたChromeの拡張機能で、その主な機能は「Use regex to extract the text content you need from web page」です。
拡張機能のスクリーンショット
Regex Extracter拡張機能のCRXファイルをダウンロード
Regex Extracter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
There are three text search modes:
Node mode:
search HTML node text, the advantage is that can highlight the search result position.
Text mode:
search the webpage text you see,commonly used to search results contain hyperlink text.
Source mode:
search HTML source code of web pages, commonly used to search for image addresses, download links, etc. 拡張機能の基本情報
| 名前 | |
| ID | hhnkaciopdblfpomobniofiiecfiibph |
| 公式URL | https://chromewebstore.google.com/detail/regex-extracter/hhnkaciopdblfpomobniofiiecfiibph |
| 説明 | Use regex to extract the text content you need from web page |
| ファイルサイズ | 144 KB |
| インストール数 | 541 |
| 現在のバージョン | 0.1.6 |
| 最終更新日 | 2021-08-30 |
| 公開日 | 2020-05-30 |
| 評価 | 5.00/5 合計 5 レビュー |
| 開発者 | zhangbohun |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en,zh-CN,zh-TW |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_name__",
"description": "__MSG_description__",
"icons": {
"128": "img\/icon.png"
},
"version": "0.1.6",
"offline_enabled": true,
"permissions": [
"clipboardWrite"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_title": "__MSG_name__",
"default_icon": "img\/icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"all_frames": true,
"run_at": "document_end",
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/search.js",
"lib\/jquery.js"
]
}
],
"manifest_version": 2,
"default_locale": "en"
} | |