Sisense Pocket
Show cube/dashboard details with one click
Wat is Sisense Pocket?
Sisense Pocket is een Chrome-extensie ontwikkeld door zcchen.dev, en de belangrijkste functie is "Show cube/dashboard details with one click".
Extensie Screenshots
Download het CRX-bestand van de extensie Sisense Pocket
Download Sisense Pocket-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension is for sisense BI user, it provide many extended features on sisense page, such as: user/group info download, cube build history download, cube permission download, cube details display, more features will be added in later release.
This extension is open source with homepage: https://github.com/ChenZaichuang/SisensePocket
I appreciate to receive any feedbacks or pull requests, you can leave your comments in this repo or in the extension homepage or mail to [email protected] for any suggestions. Basisinformatie over de Extensie
| Naam | |
| ID | ddmagnighcaljofcocokildegmboleca |
| Officiële URL | https://chromewebstore.google.com/detail/sisense-pocket/ddmagnighcaljofcocokildegmboleca |
| Beschrijving | Show cube/dashboard details with one click |
| Bestandsgrootte | 31.25 KB |
| Aantal Installaties | 52 |
| Huidige Versie | 0.0.8 |
| Laatst Bijgewerkt | 2023-12-20 |
| Publicatiedatum | 2021-04-15 |
| Beoordeling | 5.00/5 Totaal 9 Beoordelingen |
| Ontwikkelaar | zcchen.dev |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/ChenZaichuang/SisensePocket |
| Help Pagina-URL | https://github.com/ChenZaichuang/SisensePocket |
| URL van de Privacybeleid Pagina | https://raw.githubusercontent.com/ChenZaichuang/SisensePocket/master/privacy_policy.md |
| Ondersteunde Talen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Sisense Pocket",
"version": "0.0.8",
"manifest_version": 3,
"homepage_url": "https:\/\/github.com\/ChenZaichuang\/SisensePocket",
"description": "Show cube\/dashboard details with one click",
"background": {
"service_worker": "service_worker.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.sisense.com\/*"
],
"js": [
"module\/constant.js",
"module\/sisense_client.js",
"module\/sisense_data.js",
"module\/sisense_dom.js",
"content_script.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"icons": {
"16": "images\/16.png",
"32": "images\/32.png",
"48": "images\/48.png",
"128": "images\/128.png"
},
"permissions": [
"activeTab",
"cookies"
],
"action": {
"default_icon": {
"16": "images\/16.png",
"32": "images\/32.png",
"48": "images\/48.png",
"128": "images\/128.png"
},
"default_title": "Sisense Pocket"
},
"content_security_policy": [],
"host_permissions": [
"https:\/\/*.sisense.com\/app\/data\/",
"https:\/\/*.sisense.com\/app\/main#\/dashboards\/*"
]
} | |