Sisense Pocket

Show cube/dashboard details with one click

Sisense Pocketคืออะไร?

Sisense Pocket เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zcchen.dev และคุณลักษณะหลักของมันคือ "Show cube/dashboard details with one click"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sisense Pocket

ดาวน์โหลดไฟล์ส่วนขยาย Sisense Pocket ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
    ]
}