ScreenScraper
Tool to automatically grab data from sites
Cos'è ScreenScraper?
ScreenScraper è un'estensione di Chrome sviluppata da https://bsalinas.com, e la sua funzione principale è "Tool to automatically grab data from sites".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ScreenScraper
Scarica i file di estensione ScreenScraper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Seattle
Jean Austin
Ben BostonGrab all that data by selecting ".foo" and then make columns for ".name", ".city", and the "src" attribute of "img". Enjoy your screen scraping!![]()
Informazioni di Base sull'Estensione
Nome | |
ID | pfegffhjcgkneoemnlniggnhkfioidjg |
URL Ufficiale | https://chromewebstore.google.com/detail/screenscraper/pfegffhjcgkneoemnlniggnhkfioidjg |
Descrizione | Tool to automatically grab data from sites |
Dimensione del File | 135 KB |
Conteggio Installazioni | 4,020 |
Versione Corrente | 0.3.1 |
Ultimo Aggiornamento | 2013-07-15 |
Data di Pubblicazione | 2013-07-15 |
Valutazione | 3.00/5 Totale 34 Valutazioni |
Sviluppatore | https://bsalinas.com |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |