SMART4Solutions - APEX Plugin
Plugin which adds useful functionality when developing with Oracle APEX
SMART4Solutions - APEX Plugin란 무엇입니까?
SMART4Solutions - APEX Plugin은(는) Chris Jansen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Plugin which adds useful functionality when developing with Oracle APEX"입니다.
확장 프로그램 스크린샷
SMART4Solutions - APEX Plugin 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Functionality :
- Convert/Transform text to lowercase or UPPERCASE using a select list when right clicking selected text or shortcuts you can setup inside the google extensions manager.
- SQL Beautifier (In Progress).
- JS Beautifier
- APEX Items list to choose the variables available in your page.
- APEX Report Column names list to choose the variables available in your page.
- APEX System Binds list.
- Links to useful resources like: Universial theme, Font APEX, apex.world And Documantation.
- Show hidden items inside your console.log.
v1.6:
CodeMirror Addons:
- Fullscreen the dode editor with F11
- Switch codeEditor Mode ex:(from TEXT to HTML) See screenshot
- Validate JS
- Beautify JS
- Validate CSS
- Beautify CSS
- Validate HTML
- Beautify HTML
- Beautify PL/SQL 확장 프로그램 기본 정보
| 이름 | |
| ID | lgmmnahldjoppnjcbfacinccelajclnh |
| 공식 URL | https://chromewebstore.google.com/detail/smart4solutions-apex-plug/lgmmnahldjoppnjcbfacinccelajclnh |
| 설명 | Plugin which adds useful functionality when developing with Oracle APEX |
| 파일 크기 | 351 KB |
| 설치 횟수 | 320 |
| 현재 버전 | 1.7 |
| 최근 업데이트 | 2019-01-02 |
| 출시 날짜 | 2019-01-02 |
| 평점 | 3.67/5 총 3 개의 평점 |
| 개발자 | Chris Jansen |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://smart4solutions.nl |
| 지원되는 언어 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "1.7",
"short_name": "APEX Plugin",
"name": "SMART4Solutions - APEX Plugin",
"description": "Plugin which adds useful functionality when developing with Oracle APEX",
"permissions": [
"activeTab",
"contextMenus",
"storage"
],
"browser_action": {
"default_icon": "icons\/16.png"
},
"icons": {
"16": "icons\/16.png",
"24": "icons\/24.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"64": "icons\/64.png",
"96": "icons\/96.png",
"128": "icons\/128.png"
},
"options_page": "options.html",
"background": {
"scripts": [
"js\/background.js"
],
"persistent": true
},
"commands": {
"uppercase": {
"description": "Uppercase",
"suggested_key": {
"default": "Ctrl+Shift+Up",
"mac": "Command+Shift+Up"
}
},
"lowercase": {
"description": "Lowercase",
"suggested_key": {
"default": "Ctrl+Shift+Down",
"mac": "Command+Shift+Down"
}
},
"format-sql": {
"description": "Format SQL",
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "Command+Shift+F"
}
},
"beautify-js": {
"description": "Beautify JS",
"suggested_key": {
"default": "Ctrl+Shift+B",
"mac": "Command+Shift+B"
}
}
},
"content_scripts": [
{
"all_frames": false,
"js": [
"js\/jquery.min.js",
"js\/codemirror-addons\/beautify.min.js",
"js\/content.js",
"js\/codemirror-addons\/sql-formatter.min.js"
],
"matches": [
"*:\/\/*\/*f?p=*",
"*:\/\/*\/*wwv_flow.accept*"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"css\/inject-css.css",
"js\/codemirror-addons\/all.js"
]
} | |