OCI Shortcut

OCI short cut extension

OCI Shortcut क्या है?

OCI Shortcut Dz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "OCI short cut extension"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में OCI Shortcut एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
            ]
        }
    ]
}