Powerful Table Capture

Copies HTML tables to the clipboard or exports them to Microsoft Excel, CSV

Powerful Table Capture क्या है?

Powerful Table Capture dylangotosea द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copies HTML tables to the clipboard or exports them to Microsoft Excel, CSV"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Powerful Table Capture एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Copies HTML tables to the clipboard or exports them to Microsoft Excel, CSV, Office 365, etc.

Table Capture gives you the ability to easily capture HTML tables for use in a spreadsheet, whether using Microsoft Excel, Office 365, Open Office, etc.

Last updated: October 2023

Features:
• Copy tables to the clipboard with the proper row & column separators
• Export to Google Sheets
• Batch export tables to the clipboard, Excel
• Capture 
tables (or any repeating items on a website) Table Capture Pro features: • Unlimited Exports • Export views with 1,000+ rows • Formatted CSV Exports • Formatted Excel Exports • Capture dynamic and multi-page tables • Copy tables as Markdown text • Priority Support from Dev • Invoice for your expense report

एक्सटेंशन की मूल जानकारी

नाम Powerful Table Capture Powerful Table Capture
ID llfdijonpnfcffdegnlkfbineindedgj
आधिकारिक URL https://chromewebstore.google.com/detail/powerful-table-capture/llfdijonpnfcffdegnlkfbineindedgj
विवरण Copies HTML tables to the clipboard or exports them to Microsoft Excel, CSV
फ़ाइल का आकार 3.46 MB
स्थापना संख्या 41
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2024-01-02
प्रकाशन तिथि 2024-01-02
डेवलपर dylangotosea
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.chromeextensionhub.com/
गोपनीयता नीति पृष्ठ URL https://www.chromeextensionhub.com/privacy
समर्थित भाषाएँ id,ms,de,en,fr,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,hi,bn,ta,th,ar,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Powerful Table Capture",
    "version": "1.0.1",
    "description": "Copies HTML tables to the clipboard or exports them to Microsoft Excel, CSV",
    "options_ui": {
        "page": "src\/pages\/options\/index.html"
    },
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon-128.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/libs\/clip.js",
                "src\/libs\/xlsx.full.min.js",
                "src\/libs\/FileSaver.min.js",
                "src\/libs\/tableUtil.js",
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "src\/pages\/content\/style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "devtools_page": "src\/pages\/devtools\/index.html",
    "web_accessible_resources": [
        {
            "resources": [
                "contentStyle.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ],
    "default_locale": "en"
}