Sisense Pocket

Show cube/dashboard details with one click

Cos'è Sisense Pocket?

Sisense Pocket è un'estensione di Chrome sviluppata da zcchen.dev, e la sua funzione principale è "Show cube/dashboard details with one click".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Sisense Pocket

Scarica i file di estensione Sisense Pocket in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Sisense Pocket Sisense Pocket
ID ddmagnighcaljofcocokildegmboleca
URL Ufficiale https://chromewebstore.google.com/detail/sisense-pocket/ddmagnighcaljofcocokildegmboleca
Descrizione Show cube/dashboard details with one click
Dimensione del File 31.25 KB
Conteggio Installazioni 52
Versione Corrente 0.0.8
Ultimo Aggiornamento 2023-12-20
Data di Pubblicazione 2021-04-15
Valutazione 5.00/5 Totale 9 Valutazioni
Sviluppatore zcchen.dev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ChenZaichuang/SisensePocket
URL della Pagina di Aiuto https://github.com/ChenZaichuang/SisensePocket
URL della Pagina della Politica sulla Privacy https://raw.githubusercontent.com/ChenZaichuang/SisensePocket/master/privacy_policy.md
Lingue Supportate 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\/*"
    ]
}