Powerful Table Capture
Copies HTML tables to the clipboard or exports them to Microsoft Excel, CSV
Powerful Table Capture란 무엇입니까?
Powerful Table Capture은(는) dylangotosea에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copies HTML tables to the clipboard or exports them to Microsoft Excel, CSV"입니다.
확장 프로그램 스크린샷
Powerful Table Capture 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 • Capturetables (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 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" }