Sisense Pocket
Show cube/dashboard details with one click
What is Sisense Pocket?
Sisense Pocket is a Chrome extension developed by zcchen.dev, and its main feature is "Show cube/dashboard details with one click".
Extension Screenshots
Download Sisense Pocket Extension CRX File
Download Sisense Pocket extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Sisense Pocket |
ID | ddmagnighcaljofcocokildegmboleca |
Official URL | https://chromewebstore.google.com/detail/sisense-pocket/ddmagnighcaljofcocokildegmboleca |
Description | Show cube/dashboard details with one click |
File Size | 31.25 KB |
Installation Count | 52 |
Current Version | 0.0.8 |
Last Updated | 2023-12-20 |
Publish Date | 2021-04-15 |
Rating | 5.00/5 Total 9 Ratings |
Developer | zcchen.dev |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ChenZaichuang/SisensePocket |
Help Page URL | https://github.com/ChenZaichuang/SisensePocket |
Privacy Policy Page URL | https://raw.githubusercontent.com/ChenZaichuang/SisensePocket/master/privacy_policy.md |
Supported Languages | 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\/*" ] } |