SMART4Solutions - APEX Plugin

Plugin which adds useful functionality when developing with Oracle APEX

SMART4Solutions - APEX Plugin क्या है?

SMART4Solutions - APEX Plugin Chris Jansen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Plugin which adds useful functionality when developing with Oracle APEX"।

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

screenshot
screenshot
screenshot
screenshot

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

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

एक्सटेंशन की मूल जानकारी

नाम SMART4Solutions - APEX Plugin SMART4Solutions - APEX Plugin
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"
    ]
}