OCI Shortcut
OCI short cut extension
OCI Shortcut란 무엇입니까?
OCI Shortcut은(는) Dz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "OCI short cut extension"입니다.
확장 프로그램 스크린샷
OCI Shortcut 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A simple shortcut extension to Oracle Cloud Infrastructure. **IMPORTANT: this extension is only enabled when you are in OCI console. Usage: 1. Use Alt(option) + Space to call up the command input. 2. Type the service name you want to use 3. Hit Enter and get redirected! update 1.1.6: - bug fix update 1.1.5: - instead redirect the page, now using page router to do a faster redirect - refactored code update 1.1.4: - now shortcut only works in OCI console - updated network href config update 1.1.3: - added scroll list - fixed down arrow bug update 1.1.2: - now alt + space twice can take you to OCI console from OCI-C console - improved UI interaction
확장 프로그램 기본 정보
이름 | OCI Shortcut |
ID | dgfpcpfhfonjofpdijkjednehgidccad |
공식 URL | https://chromewebstore.google.com/detail/oci-shortcut/dgfpcpfhfonjofpdijkjednehgidccad |
설명 | OCI short cut extension |
파일 크기 | 41.72 KB |
설치 횟수 | 61 |
현재 버전 | 1.1.6 |
최근 업데이트 | 2019-05-21 |
출시 날짜 | 2019-05-21 |
평점 | 4.33/5 총 6 개의 평점 |
개발자 | Dz |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OCI Shortcut", "version": "1.1.6", "description": "OCI short cut extension", "manifest_version": 2, "permissions": [ "activeTab", "declarativeContent", "storage", "webRequest", "https:\/\/*.oraclecloud.com\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/logo.png", "32": "images\/logo.png", "48": "images\/logo.png", "128": "images\/logo.png" } }, "icons": { "16": "images\/logo.png", "32": "images\/logo.png", "48": "images\/logo.png", "128": "images\/logo.png" }, "commands": { "toggle-prompt": { "suggested_key": { "default": "Alt+Space", "mac": "Alt+Space" }, "description": "Toggle prompt" } }, "content_scripts": [ { "matches": [ "https:\/\/console.ca-toronto-1.oraclecloud.com\/*", "https:\/\/console.uk-london-1.oraclecloud.com\/*", "https:\/\/console.eu-frankfurt-1.oraclecloud.com\/*", "https:\/\/console.us-ashburn-1.oraclecloud.com\/*", "https:\/\/console.us-phoenix-1.oraclecloud.com\/*" ], "js": [ "jquery-3.4.0.min.js", "detail_block.js", "restful_api_calls.js", "mapping.js", "addon.js" ], "css": [ "stylesheet.css" ] } ] } |