Regex Extracter
Use regex to extract the text content you need from web page
O que é Regex Extracter?
Regex Extracter é uma extensão do Chrome desenvolvida por zhangbohun, e sua principal característica é "Use regex to extract the text content you need from web page".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Regex Extracter
Baixe arquivos de extensão Regex Extracter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Regex Extracter |
ID | hhnkaciopdblfpomobniofiiecfiibph |
URL Oficial | https://chromewebstore.google.com/detail/regex-extracter/hhnkaciopdblfpomobniofiiecfiibph |
Descrição | Use regex to extract the text content you need from web page |
Tamanho do Arquivo | 144 KB |
Contagem de Instalações | 541 |
Versão Atual | 0.1.6 |
Última Atualização | 2021-08-30 |
Data de Publicação | 2020-05-30 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | zhangbohun |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } |