Qlik Sense Console
Run calculations agains Qlik Sense (desktop and server) from Chrome Dev Tools
Qlik Sense Console란 무엇입니까?
Qlik Sense Console은(는) https://sstoichev.eu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Run calculations agains Qlik Sense (desktop and server) from Chrome Dev Tools"입니다.
확장 프로그램 스크린샷
Qlik Sense Console 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Access Qlik Sense (desktop or server) from Chrome Dev Tools and run dimension/expression calculations while developing or to debug ready apps. FOR QS SERVER ACCESS: Add "ljeoadpijoacanhinddngndcalkggkmf" to "Websocket origin white list" (QMC -> Virtual Proxies -> Default -> check Advanced --> Add new value --> paste --> Apply) How to work: - open QS app (for desktop users http://localhost:4848) in Chome - Press F12 or Ctrl+Shift+i to activate Chrome Dev Tools - Navigate to "Qlik Sense Console tab" - wait for connection to be established - press Open - wait for the doc to be open and fields to be extracted - enjoy :) Hint: You can always detach the Chrome Dev Tools pressing the top right icon Thanks to Alexander Karlsson (@mindspank) for qsocks library! Repo: https://github.com/countnazgul/qlik-sense-chrome-devtools-extension For issues and features please use the GitHub repo Change log: 0.7.3 --> Initial version 0.9.1 * multiple dimensions * history - track each calculation execution. option to reuse them * result table design is changed * result table is sortable (multiple column sort is possible holding the Shift key) * option to export/download the result table
확장 프로그램 기본 정보
이름 | Qlik Sense Console |
ID | ljeoadpijoacanhinddngndcalkggkmf |
공식 URL | https://chromewebstore.google.com/detail/qlik-sense-console/ljeoadpijoacanhinddngndcalkggkmf |
설명 | Run calculations agains Qlik Sense (desktop and server) from Chrome Dev Tools |
파일 크기 | 164 KB |
설치 횟수 | 691 |
현재 버전 | 0.9.1 |
최근 업데이트 | 2015-07-07 |
출시 날짜 | 2015-07-07 |
평점 | 4.67/5 총 6 개의 평점 |
개발자 | https://sstoichev.eu |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://sstoichev.eu/2015/07/07/qlik/ |
도움말 페이지 URL | https://github.com/countnazgul/qlik-sense-chrome-devtools-extension/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Qlik Sense Console", "version": "0.9.1", "description": "Run calculations agains Qlik Sense (desktop and server) from Chrome Dev Tools", "devtools_page": "devtools.html", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icons\/icon-16.png", "24": "icons\/icon-24.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "128": "icons\/icon-128.png" }, "offline_enabled": true } |