DoWebScraper

Turn structured HTML into a CSV or a TXT file.

Cos'è DoWebScraper?

DoWebScraper è un'estensione di Chrome sviluppata da http://quotinue.com, e la sua funzione principale è "Turn structured HTML into a CSV or a TXT file.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione DoWebScraper

Scarica i file di estensione DoWebScraper 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

                        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.                    

Informazioni di Base sull'Estensione

Nome DoWebScraper DoWebScraper
ID knkolhdlegaanmhhlbknpelfmjlbfmkk
URL Ufficiale https://chrome.google.com/webstore/detail/dowebscraper/knkolhdlegaanmhhlbknpelfmjlbfmkk
Descrizione Turn structured HTML into a CSV or a TXT file.
Dimensione del File 32.72 KB
Conteggio Installazioni 843
Versione Corrente 1.0.3
Ultimo Aggiornamento 2019-04-12
Data di Pubblicazione 2019-04-12
Sviluppatore http://quotinue.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.quotinue.com/introducing-dowebscraper/
Lingue Supportate 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"
    }
}