Regex Extracter
Use regex to extract the text content you need from web page
Cos'è Regex Extracter?
Regex Extracter è un'estensione di Chrome sviluppata da zhangbohun, e la sua funzione principale è "Use regex to extract the text content you need from web page".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Regex Extracter
Scarica i file di estensione Regex Extracter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Regex Extracter |
ID | hhnkaciopdblfpomobniofiiecfiibph |
URL Ufficiale | https://chromewebstore.google.com/detail/regex-extracter/hhnkaciopdblfpomobniofiiecfiibph |
Descrizione | Use regex to extract the text content you need from web page |
Dimensione del File | 144 KB |
Conteggio Installazioni | 541 |
Versione Corrente | 0.1.6 |
Ultimo Aggiornamento | 2021-08-30 |
Data di Pubblicazione | 2020-05-30 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | zhangbohun |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } |