Table Scrape

Scrape from tables.

Table Scrape là gì?

Table Scrape là một tiện ích mở rộng Chrome được phát triển bởi https://claycodes.org, và tính năng chính của nó là "Scrape from tables.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Table Scrape

Tải xuống các tệp mở rộng Table Scrape dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Table Scrape Table Scrape
ID ocglnchcpdjocppfepejjddgieoodaep
URL Chính Thức https://chromewebstore.google.com/detail/table-scrape/ocglnchcpdjocppfepejjddgieoodaep
Mô tả Scrape from tables.
Kích Thước Tệp 44.66 KB
Số Lần Cài Đặt 169
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2023-04-14
Ngày Phát Hành 2023-04-05
Nhà Phát Triển https://claycodes.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.claycodes.org/google-add-onsextensions/table-scrape
URL Trang Trợ Giúp https://www.claycodes.org/google-add-onsextensions/table-scrape
URL Trang Chính Sách Bảo Mật https://www.claycodes.org/home/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}