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.
扩展基本信息
名称 | Regex Extracter |
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 |
电子邮箱 | [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" } |