MrScraper
MrScraper selector helper tool
¿Qué es MrScraper?
MrScraper es una extensión de Chrome desarrollada por https://mrscraper.com, y su función principal es "MrScraper selector helper tool".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión MrScraper
Descarga archivos de extensión MrScraper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | MrScraper |
ID | bhjedfpgiobfaojogegbmcbocfnbkimh |
URL Oficial | https://chromewebstore.google.com/detail/mrscraper/bhjedfpgiobfaojogegbmcbocfnbkimh |
Descripción | MrScraper selector helper tool |
Tamaño del Archivo | 21.63 KB |
Cantidad de Instalaciones | 105 |
Versión Actual | 1.0.0 |
Última Actualización | 2023-02-09 |
Fecha de Publicación | 2023-02-08 |
Calificación | 1.00/5 Total de 1 Calificaciones |
Desarrollador | https://mrscraper.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://mrscraper.com |
URL de la Página de Ayuda | https://mrscraper.freshdesk.com/support/home |
URL de la Página de Política de Privacidad | https://mrscraper.com/privacy-policy |
Idiomas Soportados | 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:\/\/*\/*" ] } ] } |