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
公式URL 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
Eメール [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"
    }
}