PowerBI Matrix Copy
Copy from PowerBI's Matrix Visual to clipboard(TSV format)
Was ist PowerBI Matrix Copy?
PowerBI Matrix Copy ist eine Chrome-Erweiterung, die von murayama.osamu entwickelt wurde, und ihr Hauptmerkmal ist "Copy from PowerBI's Matrix Visual to clipboard(TSV format)".
Erweiterungsscreenshots
PowerBI Matrix Copy-Erweiterungs-CRX-Datei herunterladen
Laden Sie PowerBI Matrix Copy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dnkbidmoaefofeklbalbfncodbfhcpgn |
| Offizielle URL | https://chromewebstore.google.com/detail/powerbi-matrix-copy/dnkbidmoaefofeklbalbfncodbfhcpgn |
| Beschreibung | Copy from PowerBI's Matrix Visual to clipboard(TSV format) |
| Dateigröße | 39.06 KB |
| Installationsanzahl | 623 |
| Aktuelle Version | 0.3.2 |
| Letztes Update | 2019-01-26 |
| Veröffentlichungsdatum | 2019-01-26 |
| Bewertung | 2.00/5 Insgesamt 1 Bewertungen |
| Entwickler | murayama.osamu |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/MurayamaOsamu/PowerBI-MatrixCopy |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "PowerBI Matrix Copy",
"version": "0.3.2",
"description": "Copy from PowerBI's Matrix Visual to clipboard(TSV format)",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon19.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/app.powerbi.com\/*"
],
"js": [
"jquery-3.3.1.min.js",
"matrix_copy.js"
],
"run_at": "document_end"
}
],
"permissions": [
"tabs"
],
"homepage_url": "https:\/\/github.com\/MurayamaOsamu\/PowerBI-MatrixCopy"
} | |