MrScraper
MrScraper selector helper tool
Wat is MrScraper?
MrScraper is een Chrome-extensie ontwikkeld door https://mrscraper.com, en de belangrijkste functie is "MrScraper selector helper tool".
Extensie Screenshots
Download het CRX-bestand van de extensie MrScraper
Download MrScraper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | MrScraper |
ID | bhjedfpgiobfaojogegbmcbocfnbkimh |
Officiële URL | https://chromewebstore.google.com/detail/mrscraper/bhjedfpgiobfaojogegbmcbocfnbkimh |
Beschrijving | MrScraper selector helper tool |
Bestandsgrootte | 21.63 KB |
Aantal Installaties | 105 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2023-02-09 |
Publicatiedatum | 2023-02-08 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://mrscraper.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://mrscraper.com |
Help Pagina-URL | https://mrscraper.freshdesk.com/support/home |
URL van de Privacybeleid Pagina | https://mrscraper.com/privacy-policy |
Ondersteunde Talen | 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:\/\/*\/*" ] } ] } |