HTML-Table Scraper

Copy HTML Table to CSV/TAB Clipboard or File

HTML-Table Scraperคืออะไร?

HTML-Table Scraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wtaulu และคุณลักษณะหลักของมันคือ "Copy HTML Table to CSV/TAB Clipboard or File"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HTML-Table Scraper

ดาวน์โหลดไฟล์ส่วนขยาย HTML-Table Scraper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        English (US) 	
HTML-Table Scraper is a simple Extension that allows you to right click any HTML table and select to copy the data in that table to the Clipboard or Save-to-File in either CSV or Tab delimited.

Right Click Table to Select HTML-Table Scraper to Clipboard or File

If the Right Click Context Menu has been disabled or overwritten:
Hold CTRL down while Right Click will automatically Copy Table to Clipboard without selecting the context menu option. This is useful for website that block the context menu from showing up on right clicks.

Scraper fully supports ColSpan and RowSpan
- ColSpan: Value will be placed in the first Column. Additional Columns in Span will be set to NULL for the value.
- RowSpan: Value will be repeated for each consecutive row in the RowSpan of the table

Automatic Formatting
- All cells are Trimmed of white-space
- All tabs are removed

Available Options to Scrape the Data.
Delimited: CSV or TAB
CRLF Replacement: Replace Carriage Returns inside a string with a NULL or SPACE.
Quote Strings: Option to check each column to see if they are Numeric or String Columns. If selected, all String Columns will be placed inside double quotes with the exception of Numeric Columns.
Remove Quotes: Option to remove any double quotes found inside a string.
Remove Multiple Spaces: Option to Convert Consecutive Spaces to a Single Space within a String
Get Image SRC: Option to get the SRC link of the each image.
Format Dates: Option will attempt to format dates to dd-MMM-yyyy. Currently only looks for 1)dd-MMM-yy 2)Month dd, yyyy to convert to dd-MMM-yyyy

Revisions
V1.0.1
-Removed TABS from permissions (not required)

V1.0.2
-Removed full path from permissions (not required)

V1.0.3
-Added Host Path back to Permissions

V1.0.4
-Fixed bugs with the date format dd-mmm-yyyy

V1.0.5
-Fixed bug introduced in 1.0.4 which was never released

V3.0.0 (May 24 2023)
-Migrated to V3 Manifest
-Converted Deprecated Functions to Current Model
-Updated Console Logs
-Added New Alert Functions
-Added Alert to CTRL Right Click Copy
-Added How to Use to Settings Menu
-Added Troubleshooting Steps to Settings Menu
-Added Load Settings Menu on Install
-Fixed a few minor code issues

V3.0.1
-Removed options open on tab when no option found bug                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ HTML-Table Scraper HTML-Table Scraper
ID ncphhmcjgbpglahiijnaaaaneoijlmkj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/html-table-scraper/ncphhmcjgbpglahiijnaaaaneoijlmkj
คำอธิบาย Copy HTML Table to CSV/TAB Clipboard or File
ขนาดไฟล์ 55.43 KB
จำนวนการติดตั้ง 6,098
เวอร์ชันปัจจุบัน 3.0.1
อัปเดตครั้งล่าสุด 2023-06-07
วันที่เผยแพร่ 2021-06-13
คะแนน 4.11/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา wtaulu
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "HTML-Table Scraper",
    "description": "Copy HTML Table to CSV\/TAB Clipboard or File",
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "version": "3.0.1",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icons\/Scraper_32.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "icons": {
        "128": "icons\/Scraper_128.png",
        "64": "icons\/Scraper_64.png",
        "32": "icons\/Scraper_32.png"
    }
}