Sisense Pocket

Show cube/dashboard details with one click

Sisense Pocket란 무엇입니까?

Sisense Pocket은(는) zcchen.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show cube/dashboard details with one click"입니다.

확장 프로그램 스크린샷

screenshot

Sisense Pocket 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Sisense Pocket Sisense Pocket
ID ddmagnighcaljofcocokildegmboleca
공식 URL https://chromewebstore.google.com/detail/sisense-pocket/ddmagnighcaljofcocokildegmboleca
설명 Show cube/dashboard details with one click
파일 크기 31.25 KB
설치 횟수 52
현재 버전 0.0.8
최근 업데이트 2023-12-20
출시 날짜 2021-04-15
평점 5.00/5 총 9 개의 평점
개발자 zcchen.dev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ChenZaichuang/SisensePocket
도움말 페이지 URL https://github.com/ChenZaichuang/SisensePocket
개인정보 보호 정책 페이지 URL https://raw.githubusercontent.com/ChenZaichuang/SisensePocket/master/privacy_policy.md
지원되는 언어 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\/*"
    ]
}