Table Scrape

Scrape from tables.

Table Scrapeとは何ですか?

Table Scrapeはhttps://claycodes.orgによって開発されたChromeの拡張機能で、その主な機能は「Scrape from tables.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Table Scrape拡張機能のCRXファイルをダウンロード

Table Scrape拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Scrape data to a CSV from paginated tables using a button labeled with "next". 

Github source https://github.com/GoogleChromeLabs/table-scrape.git                    

拡張機能の基本情報

名前 Table Scrape Table Scrape
ID ocglnchcpdjocppfepejjddgieoodaep
公式URL https://chromewebstore.google.com/detail/table-scrape/ocglnchcpdjocppfepejjddgieoodaep
説明 Scrape from tables.
ファイルサイズ 44.66 KB
インストール数 169
現在のバージョン 0.0.2
最終更新日 2023-04-14
公開日 2023-04-05
開発者 https://claycodes.org
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.claycodes.org/google-add-onsextensions/table-scrape
ヘルプページのURL https://www.claycodes.org/google-add-onsextensions/table-scrape
プライバシーポリシーページのURL https://www.claycodes.org/home/privacy-policy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Table Scrape",
    "version": "0.0.2",
    "author": "Clay Smith",
    "short_name": "Table Scrape",
    "default_locale": "en",
    "description": "Scrape from tables.",
    "icons": {
        "19": "images\/19.png",
        "32": "images\/32.png",
        "38": "images\/38.png",
        "36": "images\/36.png",
        "64": "images\/64.png",
        "128": "images\/128.png"
    },
    "permissions": [
        "storage",
        "webNavigation"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "action": {
        "default_icon": {
            "19": "images\/19.png",
            "38": "images\/38.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/*\/*"
            ],
            "exclude_matches": [],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}