MrScraper
MrScraper selector helper tool
Cos'è MrScraper?
MrScraper è un'estensione di Chrome sviluppata da https://mrscraper.com, e la sua funzione principale è "MrScraper selector helper tool".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione MrScraper
Scarica i file di estensione MrScraper 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
The MrScraper.com tool lets you easily find CSS selectors from to use with scrapers. Just click on the element you want to target and a CSS selector will be generated for you. Additionally, any CSS selector you type in will be highlighted. Use this to easily detect what elements will be extracted with the current selector.
Informazioni di Base sull'Estensione
Nome | MrScraper |
ID | bhjedfpgiobfaojogegbmcbocfnbkimh |
URL Ufficiale | https://chromewebstore.google.com/detail/mrscraper/bhjedfpgiobfaojogegbmcbocfnbkimh |
Descrizione | MrScraper selector helper tool |
Dimensione del File | 21.63 KB |
Conteggio Installazioni | 105 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2023-02-09 |
Data di Pubblicazione | 2023-02-08 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | https://mrscraper.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://mrscraper.com |
URL della Pagina di Aiuto | https://mrscraper.freshdesk.com/support/home |
URL della Pagina della Politica sulla Privacy | https://mrscraper.com/privacy-policy |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MrScraper", "version": "1.0.0", "description": "MrScraper selector helper tool", "manifest_version": 3, "author": "Kai Sasaki", "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+V", "mac": "Command+Shift+V" } } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "web_accessible_resources": [ { "resources": [ "images\/icon-128.png", "templates\/scraper-tool.html" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ] } |