MrScraper
MrScraper selector helper tool
Qu'est-ce que MrScraper ?
MrScraper est une extension Chrome développée par https://mrscraper.com, et sa fonction principale est "MrScraper selector helper tool".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension MrScraper
Téléchargez les fichiers d'extension MrScraper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | MrScraper |
ID | bhjedfpgiobfaojogegbmcbocfnbkimh |
URL Officiel | https://chromewebstore.google.com/detail/mrscraper/bhjedfpgiobfaojogegbmcbocfnbkimh |
Description | MrScraper selector helper tool |
Taille du Fichier | 21.63 KB |
Nombre d'Installations | 105 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2023-02-09 |
Date de Publication | 2023-02-08 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | https://mrscraper.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://mrscraper.com |
URL de la Page d'Aide | https://mrscraper.freshdesk.com/support/home |
URL de la Page de Politique de Confidentialité | https://mrscraper.com/privacy-policy |
Langues Prises en Charge | 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:\/\/*\/*" ] } ] } |