DoWebScraper

Turn structured HTML into a CSV or a TXT file.

什麼是DoWebScraper?

DoWebScraper是由http://quotinue.com開發的Chrome擴展程式,該擴展的主要功能是“Turn structured HTML into a CSV or a TXT file.”。

擴展截圖

screenshot

下載DoWebScraper擴展crx文件

下載DoWebScraper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 DoWebScraper DoWebScraper
ID knkolhdlegaanmhhlbknpelfmjlbfmkk
官方網址 https://chrome.google.com/webstore/detail/dowebscraper/knkolhdlegaanmhhlbknpelfmjlbfmkk
簡介 Turn structured HTML into a CSV or a TXT file.
檔案大小 32.72 KB
安裝次數 843
目前版本 1.0.3
更新時間 2019-04-12
上架時間 2019-04-12
開發者 http://quotinue.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.quotinue.com/introducing-dowebscraper/
支援的語言 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"
    }
}