Sisense Pocket

Show cube/dashboard details with one click

Co to jest Sisense Pocket?

Sisense Pocket to rozszerzenie Chrome opracowane przez zcchen.dev, a jego główną funkcją jest „Show cube/dashboard details with one click”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Sisense Pocket

Pobierz pliki rozszerzeń Sisense Pocket w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Sisense Pocket Sisense Pocket
ID ddmagnighcaljofcocokildegmboleca
Oficjalny URL https://chromewebstore.google.com/detail/sisense-pocket/ddmagnighcaljofcocokildegmboleca
Opis Show cube/dashboard details with one click
Rozmiar pliku 31.25 KB
Liczba instalacji 52
Aktualna Wersja 0.0.8
Ostatnia Aktualizacja 2023-12-20
Data Publikacji 2021-04-15
Ocena 5.00/5 Łącznie 9 Oceny
Deweloper zcchen.dev
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/ChenZaichuang/SisensePocket
Adres URL Strony Pomocy https://github.com/ChenZaichuang/SisensePocket
Adres URL Strony Polityki Prywatności https://raw.githubusercontent.com/ChenZaichuang/SisensePocket/master/privacy_policy.md
Obsługiwane Języki 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\/*"
    ]
}