Bizzomate Mendix dev tools
A very powerfull devtool for any Mendix application.
Bizzomate Mendix dev tools란 무엇입니까?
Bizzomate Mendix dev tools은(는) Bizzomate에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A very powerfull devtool for any Mendix application."입니다.
확장 프로그램 스크린샷
Bizzomate Mendix dev tools 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Bizzomate Dev Tools, created to make your life easier! Get insights into any Mendix application by the press of a button. Browse your data, client state, check your security and much more! Helping you to create the high-performing, stable and secure apps you have always wanted. To get started make sure you add the Bizzomate Dev tools module to your project and enable the tool for your environment (https://marketplace.mendix.com/link/component/120888). After this simply go to your Mendix page and press Alt+b. Details - See general information such as user details, version numbers, layouts, widgets, etc. - The local cache/state can be viewed including local changes. - All objects the current user has access to can be searched, sorted and viewed making use of the exposed REST API. - Utilities such as editing objects, reverting changes, triggering microflows, creating new objects, a user switcher and opening the tool in a new window Privacy - We do not collect any data from you whatsoever, nor do we make any calls to external domains. For more information, bugreports or feature request you can always join our discord server: https://discord.com/invite/pVNSuY2dPU.
확장 프로그램 기본 정보
이름 | |
ID | nkbokoloejkhohjlickhfkjfmbmboaof |
공식 URL | https://chromewebstore.google.com/detail/bizzomate-mendix-dev-tool/nkbokoloejkhohjlickhfkjfmbmboaof |
설명 | A very powerfull devtool for any Mendix application. |
파일 크기 | 867 KB |
설치 횟수 | 1,065 |
현재 버전 | 2.5.0 |
최근 업데이트 | 2023-07-14 |
출시 날짜 | 2022-06-28 |
평점 | 4.78/5 총 9 개의 평점 |
개발자 | Bizzomate |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://bizzomate.com |
도움말 페이지 URL | https://discord.gg/pVNSuY2dPU |
개인정보 보호 정책 페이지 URL | https://bizzomate.com/privacy-statement |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bizzomate Mendix dev tools", "description": "A very powerfull devtool for any Mendix application.", "version": "2.5.0", "manifest_version": 3, "background": [], "action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/icons\/icon_16.png", "32": "assets\/icons\/icon_32.png", "64": "assets\/icons\/icon_64.png", "128": "assets\/icons\/icon_128.png" } }, "content_scripts": [ { "all_frames": false, "js": [ ".\/contentScripts.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "icons": { "16": "assets\/icons\/icon_16.png", "32": "assets\/icons\/icon_32.png", "64": "assets\/icons\/icon_64.png", "128": "assets\/icons\/icon_128.png" }, "options_ui": [], "permissions": [], "optional_permissions": [], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": { "extension_page": "script-src 'self'; object-src 'self'" }, "web_accessible_resources": [ { "resources": [ "bizzoTools.js", "bizzoTools.js.map", "contentScripts.js", "contentScripts.js.map", "loadBizzoTools.js", "loadBizzoTools.js.map", "bizzoTools.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |