PowerBI Extractor by Table Capture
Allows you to extract data from a PowerBI view to Excel (XLSX) or CSV.
PowerBI Extractor by Table Capture란 무엇입니까?
PowerBI Extractor by Table Capture은(는) https://georgemike.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to extract data from a PowerBI view to Excel (XLSX) or CSV."입니다.
확장 프로그램 스크린샷
PowerBI Extractor by Table Capture 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Microsoft PowerBI dashboards contain a lot of data, but often you can't simply copy/paste that data. The PowerBI Extractor by Table Capture allows you to export tables and charts from these reports, views and dashboards to Microsoft Excel (as a .xlsx file), to CSV or to you clipboard. Last updated: 1/29/2024
확장 프로그램 기본 정보
이름 | PowerBI Extractor by Table Capture |
ID | lkojnilkkidnhhdlpkocjfpgfkhholan |
공식 URL | https://chromewebstore.google.com/detail/powerbi-extractor-by-tabl/lkojnilkkidnhhdlpkocjfpgfkhholan |
설명 | Allows you to extract data from a PowerBI view to Excel (XLSX) or CSV. |
파일 크기 | 707 KB |
설치 횟수 | 236 |
현재 버전 | 1.0.21 |
최근 업데이트 | 2024-01-30 |
출시 날짜 | 2023-10-03 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | https://georgemike.com |
이메일 | [email protected] |
결제 유형 | in_app |
확장 프로그램 웹 사이트 | https://georgemike.com/ |
도움말 페이지 URL | https://georgemike.com/ |
개인정보 보호 정책 페이지 URL | https://www.georgemike.com/chrome/privacypolicy |
지원되는 언어 | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.0.21", "name": "__MSG_extName__", "short_name": "__MSG_extSName__", "description": "__MSG_extDesc__", "default_locale": "en", "homepage_url": "https:\/\/georgemike.com", "icons": { "34": "img\/icon-34.png", "128": "img\/icon-128.png" }, "background": { "service_worker": "js\/background.js" }, "options_page": "options.html", "permissions": [ "contextMenus", "downloads", "storage", "scripting" ], "content_scripts": [ { "matches": [ "https:\/\/app.powerbi.com\/*" ], "js": [ "js\/DataWrapper.js", "js\/DisplayFormat.js", "js\/ExtractStatus.js", "js\/PBIExporter.js", "js\/InPageExporter.js", "js\/content.js" ], "all_frames": true, "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "account.html" ], "matches": [ "https:\/\/app.powerbi.com\/*" ] } ], "commands": { "export-to-csv": { "suggested_key": { "default": "Ctrl+Shift+J", "windows": "Alt+Shift+J", "mac": "Alt+Shift+J" }, "description": "Export to CSV" }, "export-to-excel": { "suggested_key": { "default": "Ctrl+Shift+L", "windows": "Alt+Shift+L", "mac": "Alt+Shift+L" }, "description": "Export to Excel" } }, "action": [], "host_permissions": [ "*:\/\/app.powerbi.com\/*" ] } |