XRM World
Customize Dynamics365 with consistent metadata naming conventions
XRM World란 무엇입니까?
XRM World은(는) https://xrm.world에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize Dynamics365 with consistent metadata naming conventions"입니다.
확장 프로그램 스크린샷
XRM World 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Customize CRM Dynamics 365 consistently using same naming convention through out all of the team. No more inconsistent metadata created by mistake. Please visit http://xrm.world/blog/posts/2018/july/xrm-world-chrome-extension/
확장 프로그램 기본 정보
이름 | XRM World |
ID | bjjinmnfkhkcpfkogighlcdfmejincbh |
공식 URL | https://chromewebstore.google.com/detail/xrm-world/bjjinmnfkhkcpfkogighlcdfmejincbh |
설명 | Customize Dynamics365 with consistent metadata naming conventions |
파일 크기 | 444 KB |
설치 횟수 | 131 |
현재 버전 | 2.41 |
최근 업데이트 | 2019-02-19 |
출시 날짜 | 2019-02-19 |
개발자 | https://xrm.world |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://xrm.world/blog/posts/2018/july/xrm-world-chrome-extension/ |
도움말 페이지 URL | http://xrm.world/contact/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "XRM World", "author": "Ramy Victor", "description": "Customize Dynamics365 with consistent metadata naming conventions", "version": "2.41", "icons": { "128": "img\/logo128.png", "16": "img\/logo16.png", "48": "img\/logo48.png" }, "browser_action": { "default_icon": "img\/logo48.png", "default_popup": "pages\/options.html", "default_title": "XRM World for Dynamics365" }, "content_scripts": [ { "js": [ "app.js", "jquery-3.3.1.min.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end", "all_frames": true }, { "js": [ "scripts\/crmTopContext.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end", "all_frames": false }, { "js": [ "scripts\/entityRecordContext.js", "scripts\/formActions.js" ], "matches": [ "http:\/\/*\/*form\/ClientApiWrapper.aspx*", "https:\/\/*\/*form\/ClientApiWrapper.aspx*" ], "run_at": "document_end", "all_frames": true }, { "js": [ "scripts\/formActions.js" ], "matches": [ "http:\/\/*\/*pagetype=entityrecord", "https:\/\/*\/*pagetype=entityrecord", "http:\/\/*\/*form\/page.aspx*", "https:\/\/*\/*form\/page.aspx*" ], "run_at": "document_end", "all_frames": true }, { "js": [ "webresourceNCs.js" ], "matches": [ "http:\/\/*\/*tools\/webresourceeditor\/edit.aspx*", "https:\/\/*\/*tools\/webresourceeditor\/edit.aspx*" ], "run_at": "document_end", "all_frames": true }, { "js": [ "fieldNCs.js" ], "matches": [ "http:\/\/*\/*systemcustomization\/attributes\/manageAttribute.aspx*", "https:\/\/*\/*systemcustomization\/attributes\/manageAttribute.aspx*" ], "run_at": "document_end", "all_frames": false }, { "js": [ "scripts\/crmTopContext.js", "scripts\/workflowNCs.js" ], "matches": [ "https:\/\/*\/*sfa\/workflow\/edit.aspx*", "https:\/\/*\/*tools\/systemcustomization\/businessrules*", "http:\/\/*\/*sfa\/workflow\/edit.aspx*", "http:\/\/*\/*tools\/systemcustomization\/businessrules*" ], "run_at": "document_end", "all_frames": false }, { "js": [ "formNCs.js" ], "matches": [ "http:\/\/*\/*FormEditor\/Dialogs\/*", "https:\/\/*\/*FormEditor\/Dialogs\/*" ], "run_at": "document_end", "all_frames": true } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage", "unlimitedStorage", "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "scripts\/crm2013oneclicknavigation.js", "scripts\/xrmqn.js", "css\/xrmqn.css", "jquery-3.3.1.min.js", "scripts\/jquery-ui.js", "scripts\/formActions.js", "scripts\/copyworkflow.js" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+X" }, "description": "Activate the extension" } } } |