MrScraper
MrScraper selector helper tool
Was ist MrScraper?
MrScraper ist eine Chrome-Erweiterung, die von https://mrscraper.com entwickelt wurde, und ihr Hauptmerkmal ist "MrScraper selector helper tool".
Erweiterungsscreenshots
MrScraper-Erweiterungs-CRX-Datei herunterladen
Laden Sie MrScraper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | MrScraper |
ID | bhjedfpgiobfaojogegbmcbocfnbkimh |
Offizielle URL | https://chromewebstore.google.com/detail/mrscraper/bhjedfpgiobfaojogegbmcbocfnbkimh |
Beschreibung | MrScraper selector helper tool |
Dateigröße | 21.63 KB |
Installationsanzahl | 105 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2023-02-09 |
Veröffentlichungsdatum | 2023-02-08 |
Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://mrscraper.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://mrscraper.com |
Hilfeseite URL | https://mrscraper.freshdesk.com/support/home |
URL der Datenschutzrichtlinien-Seite | https://mrscraper.com/privacy-policy |
Unterstützte Sprachen | 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:\/\/*\/*" ] } ] } |