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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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\/*"
]
} | |