DoWebScraper
Turn structured HTML into a CSV or a TXT file.
Qu'est-ce que DoWebScraper ?
DoWebScraper est une extension Chrome développée par http://quotinue.com, et sa fonction principale est "Turn structured HTML into a CSV or a TXT file.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension DoWebScraper
Téléchargez les fichiers d'extension DoWebScraper 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
Dead simple web scraper for data. You drop in a CSS selector and you get a table of data that you can download to a text or CSV file. I was looking for a dead simple scraper that just did what it was supposed to do without annoying me. None existed anymore so I decided to make my own. Do not expect fancy features but feel free to email me with new ideas. 1.0.3 improves the layout of the app itself and adds a "Clear" function.
Informations de Base sur l'Extension
Nom | |
ID | knkolhdlegaanmhhlbknpelfmjlbfmkk |
URL Officiel | https://chrome.google.com/webstore/detail/dowebscraper/knkolhdlegaanmhhlbknpelfmjlbfmkk |
Description | Turn structured HTML into a CSV or a TXT file. |
Taille du Fichier | 32.72 KB |
Nombre d'Installations | 843 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2019-04-12 |
Date de Publication | 2019-04-12 |
Développeur | http://quotinue.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.quotinue.com/introducing-dowebscraper/ |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DoWebScraper", "description": "Turn structured HTML into a CSV or a TXT file.", "version": "1.0.3", "browser_action": { "default_icon": "ScraperLogo.png", "default_title": "DoWebScraper" }, "background": { "scripts": [ "mybackground.js" ] }, "web_accessible_resources": [ "page.html" ], "permissions": [ "tabs", "activeTab", "pageCapture" ], "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" } } |