Table Capture

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

Table Capture क्या है?

Table Capture https://www.georgemike.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copies HTML tables to the clipboard or exports them to Microsoft Excel, CSV, Google Sheets, Office 365, etc."।

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

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

Last updated: February 2024

Features:
• Copy tables to the clipboard with the proper row & column separators
• Export to Google Sheets
• Batch export tables to the clipboard, Excel & Google Sheets 
• Capture 
tables (or any repeating items on a website) Table Capture Pro features ($12/year): • Download tables directly as an Excel spreadsheet or as a CSV file • Capture multi-page tables and tables that load as you scroll • Copy tables to the clipboard as Markdown • Screenshot tables (save as PNG images) • Export tables to Office 365 • Create "Recipes" for handling tables on specific websites • Export tables from PDF files (locally and from the web) Table Capture Cloud features ($25/month): - Real-time sync to Google Sheets - Magic Columns: AI-based column parsing Support & Testing: [email protected] • Please test the extension on the tables provided here: https://www.georgemike.com/tables/test/

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

नाम Table Capture Table Capture
ID iebpjdmgckacbodjpijphcplhebcmeop
आधिकारिक URL https://chromewebstore.google.com/detail/table-capture/iebpjdmgckacbodjpijphcplhebcmeop
विवरण Copies HTML tables to the clipboard or exports them to Microsoft Excel, CSV, Google Sheets, Office 365, etc.
फ़ाइल का आकार 4.98 MB
स्थापना संख्या 201,521
वर्तमान संस्करण 10.0.49
अंतिम अपडेट 2024-02-26
प्रकाशन तिथि 2020-07-01
रेटिंग 4.33/5 कुल 509 रेटिंग्स
डेवलपर https://www.georgemike.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.georgemike.com/tablecapture/
सहायता पृष्ठ URL https://www.georgemike.com/tablecapture/
गोपनीयता नीति पृष्ठ URL https://www.georgemike.com/chrome/privacypolicy
समर्थित भाषाएँ en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google-analytics.com https:\/\/apis.google.com https:\/\/www.youtube.com\/; object-src 'self'",
    "version": "10.0.49",
    "background": {
        "scripts": [
            "js\/lib\/js.cookie.v2.2.0.js",
            "js\/lib\/clipboard.js",
            "js\/ActivityLogUtil.js",
            "js\/AuthWrapper.js",
            "js\/BackgroundDataManager.js",
            "js\/BackgroundScriptUtil.js",
            "js\/BigSyncStorage.js",
            "js\/BrowserEnv.js",
            "js\/Config.js",
            "js\/ExtensionUtils.js",
            "js\/GMikeAPI.js",
            "js\/MessageAction.js",
            "js\/OutputFormat.js",
            "js\/ScreenshotUtil.js",
            "js\/SheetsSync.js",
            "js\/TableActionLogger.js",
            "js\/TableUtil.js",
            "js\/background.js"
        ]
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "images\/icon.addressbar.gif",
        "images\/icon.addressbar.19.gif",
        "images\/loader.gif",
        "images\/icon.png",
        "images\/icon.csv.b.png",
        "images\/icon.clipboard.add.png",
        "images\/icon.clipboard.edit.png",
        "images\/icon.excel.svg",
        "images\/icon.html.png",
        "images\/icon.markdown.png",
        "images\/icon.menu.png",
        "images\/icon.o365.png",
        "images\/icon.sheets.png",
        "images\/icon.screenshot.big.png",
        "images\/icon.cloud.128.png",
        "activate.html",
        "activity.html",
        "clips.html",
        "cloud.html",
        "manage-sheets.html",
        "options.html",
        "pdf-extract.html",
        "recipes.html",
        "support.html",
        "upgrade.html",
        "onboard\/onboard.html"
    ],
    "name": "Table Capture",
    "short_name": "Table Capture",
    "description": "Copies HTML tables to the clipboard or exports them to Microsoft Excel, CSV, Google Sheets, Office 365, etc.",
    "default_locale": "en",
    "icons": {
        "128": "images\/icon.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [],
            "js": [
                "js\/lib\/Blob.js",
                "js\/lib\/FileSaver.v2.0.4.min.js",
                "js\/lib\/xlsx.full.0.16.1.min.js",
                "js\/lib\/js.cookie.v2.2.0.js",
                "js\/lib\/clipboard.js",
                "js\/lib\/html2canvas.js",
                "js\/lib\/markdown-table.js",
                "js\/DataClipper.js",
                "js\/DataProvider.js",
                "js\/MessageAction.js",
                "js\/OutputFormat.js",
                "js\/MutationSnoop.js",
                "js\/TableShow.js",
                "js\/DetachedTableShow.js",
                "js\/ElementWrapper.js",
                "js\/TableWrapper.js",
                "js\/SelectionWrapper.js",
                "js\/SpecialCaseElementWrapper.js",
                "js\/NotionTableWrapper.js",
                "js\/RecipeTableWrapper.js",
                "js\/app\/PagingListener.js",
                "js\/app\/DynamicPagingListener.js",
                "js\/app\/NavigationPagingListener.js",
                "js\/app\/AutoScroller.js",
                "js\/app\/ContentScriptUtil.js",
                "js\/app\/NextButtonListener.js",
                "js\/app\/Robot.js",
                "js\/app\/ContentModal.js",
                "js\/app\/WorkshopEvent.js",
                "js\/app\/WorkshopFrame.js",
                "js\/app\/SelectionWorkshop.js",
                "js\/app\/SelectionWorkshopDataManager.js",
                "js\/BigSyncStorage.js",
                "js\/BrowserEnv.js",
                "js\/Config.js",
                "js\/ExtensionUtils.js",
                "js\/ExcelUtil.js",
                "js\/TableActionLogger.js",
                "js\/TableUtil.js",
                "js\/ScreenshotUtil.js",
                "js\/SheetsSyncBridge.js",
                "js\/TableManager.js",
                "js\/content.js"
            ],
            "css": [
                "css\/lib\/hint.min.css",
                "css\/content.css",
                "css\/SelectionWorkshop.css",
                "css\/ContentComponents.css",
                "css\/Loading.css",
                "css\/Toggle.css"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "webNavigation"
    ],
    "optional_permissions": [
        "identity"
    ],
    "oauth2": {
        "client_id": "134705207172-cjqlrudj323jpldsf98sjmfaf2045b05.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/spreadsheets",
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    },
    "commands": {
        "display-inline-table-capture": {
            "suggested_key": {
                "default": "Ctrl+Shift+D",
                "windows": "Alt+Shift+D",
                "mac": "Alt+Shift+D"
            },
            "description": "Display Inline"
        },
        "launch-table-capture-workshop": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "windows": "Alt+Shift+E",
                "mac": "Alt+Shift+E"
            },
            "description": "Launch Workshop"
        },
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+T",
                "windows": "Alt+Shift+T",
                "mac": "Alt+Shift+T"
            }
        }
    },
    "page_action": {
        "default_name": "Tables Available to Capture",
        "default_icon": {
            "19": "images\/icon.addressbar.19.gif"
        },
        "default_popup": "popup.html"
    }
}