ScreenScraper
Tool to automatically grab data from sites
Qu'est-ce que ScreenScraper ?
ScreenScraper est une extension Chrome développée par https://bsalinas.com, et sa fonction principale est "Tool to automatically grab data from sites".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ScreenScraper
Téléchargez les fichiers d'extension ScreenScraper 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
Automatically grab sets of data from websites and download it as a CSV or JSON file. Basically, a small extension that acts as a screen scraper and lets your easily scrape data from a website. Let's say you have a website with:Joe SeattleJean AustinBen BostonGrab all that data by selecting ".foo" and then make columns for ".name", ".city", and the "src" attribute of "img". Enjoy your screen scraping!
Informations de Base sur l'Extension
Nom | ScreenScraper |
ID | pfegffhjcgkneoemnlniggnhkfioidjg |
URL Officiel | https://chromewebstore.google.com/detail/screenscraper/pfegffhjcgkneoemnlniggnhkfioidjg |
Description | Tool to automatically grab data from sites |
Taille du Fichier | 135 KB |
Nombre d'Installations | 4,020 |
Version Actuelle | 0.3.1 |
Dernière Mise à Jour | 2013-07-15 |
Date de Publication | 2013-07-15 |
Évaluation | 3.00/5 Total 34 Évaluations |
Développeur | https://bsalinas.com |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ScreenScraper", "description": "Tool to automatically grab data from sites", "version": "0.3.1", "icons": { "128": "logo_128.png", "48": "logo_48.png", "16": "logo_16.png" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "content_scripts": [ { "all_frames": false, "js": [ "jquery-1.9.1.min.js", "myscript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_title": "ScreenScraper", "default_popup": "popup.html", "default_icon": { "19": "logo_19.png", "38": "logo_38.png" } }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs" ] } |