JDE-xpansion
Useful tools from Fusion 5 for interacting with JDE's web interface.
JDE-xpansion란 무엇입니까?
JDE-xpansion은(는) Fusion5에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Useful tools from Fusion 5 for interacting with JDE's web interface."입니다.
확장 프로그램 스크린샷
JDE-xpansion 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension provides two useful tools from Fusion5 for interacting with JDE's web interface. 1. Form ids copied to your clipboard in an instant! Simply hold down SHIFT and click on a field to have its form id copied to your clipboard. 2. Bulk literal value entry. An additional entry method is automatically added to the "Select Literal Value" method within data selection. Simply copy from a spreadsheet or enter each item on a new line and click the list button. Read more: https://shannonscncjdeblog.blogspot.com.au/2017/07/rapid-data-selection-entry-easy.html
확장 프로그램 기본 정보
이름 | JDE-xpansion |
ID | oilcfopfbikfeapigpknngnmdcpijgnl |
공식 URL | https://chromewebstore.google.com/detail/jde-xpansion/oilcfopfbikfeapigpknngnmdcpijgnl |
설명 | Useful tools from Fusion 5 for interacting with JDE's web interface. |
파일 크기 | 14.43 KB |
설치 횟수 | 1,004 |
현재 버전 | 1.1 |
최근 업데이트 | 2019-02-07 |
출시 날짜 | 2019-02-06 |
평점 | 4.43/5 총 7 개의 평점 |
개발자 | Fusion5 |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://shannonscncjdeblog.blogspot.com.au/2017/07/rapid-data-selection-entry-easy.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "JDE-xpansion", "short_name": "JDE-xpansion", "description": "Useful tools from Fusion 5 for interacting with JDE's web interface.", "version": "1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "background" ], "web_accessible_resources": [ "jde_functions.js", "add_list.gif" ], "content_scripts": [ { "matches": [ "http:\/\/*\/jde\/E1Menu.maf?*", "https:\/\/*\/jde\/E1Menu.maf?*", "http:\/\/*\/jde\/E1Client.mafService?*", "https:\/\/*\/jde\/E1Client.mafService?*" ], "all_frames": true, "js": [ "content_script.js" ] } ], "browser_action": { "default_popup": "popup.html" } } |