Sisense Pocket
Show cube/dashboard details with one click
什麼是Sisense Pocket?
Sisense Pocket是由zcchen.dev開發的Chrome擴展程式,該擴展的主要功能是“Show cube/dashboard details with one click”。
擴展截圖
下載Sisense Pocket擴展crx文件
下載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 |
ID | ddmagnighcaljofcocokildegmboleca |
官方網址 | 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\/*" ] } |