Vlocity Developer Extension

Makes development easier for omniscripts and Integration procedures

Τι είναι το Vlocity Developer Extension;

Το Vlocity Developer Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον madhava.shetty57, και η κύρια λειτουργία του είναι "Makes development easier for omniscripts and Integration procedures".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Vlocity Developer Extension

Λήψη αρχείων επέκτασης Vlocity Developer Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Features :

1️⃣  Easily search for content within Omniscripts (OS) or Integration procedures (IP).
2️⃣  Seamlessly search and navigate to Omnistudio component designer pages, including Omniscript, Flex Card, Integration Procedure, and Data Raptor.
3️⃣  Access all custom functions created for OmniStudio Data Raptors and IP from one convenient location.
4️⃣  Swiftly navigate to Omnistudio component pages and Salesforce pages. 
5️⃣  Effortlessly clone and move elements between Omniscripts (OS) or Integration procedures (IP).

Check out the demo video:
https://drive.google.com/file/d/1OnQB6EZXuTQ4mLBhPQi_eOGd0YuaW8Lb/view

To make the most of feature 5️⃣ , follow these installation steps : 

1️⃣  Download the package from https://github.com/madhav596/Vlocity-Developer-Extension and deploy it to Salesforce org using VS code . 
2️⃣  Refresh Salesforce pages, and you'll spot the extension icon.

Advantages :
1️⃣  Accelerates Omnistudio (Vlocity) component debugging and development. 
2️⃣  Compatible with all Industry Clouds like Communication, Insurance, Health, and more. 
3️⃣  Functions seamlessly within the Salesforce Lightning Experience.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Vlocity Developer Extension Vlocity Developer Extension
ID babgdocmemcdpobdlhlnckonijngocmj
Επίσημο URL https://chromewebstore.google.com/detail/vlocity-developer-extensi/babgdocmemcdpobdlhlnckonijngocmj
Περιγραφή Makes development easier for omniscripts and Integration procedures
Μέγεθος Αρχείου 2.87 MB
Αριθμός Εγκαταστάσεων 284
Τρέχουσα Έκδοση 1.2.2
Τελευταία Ενημέρωση 2023-09-20
Ημερομηνία Δημοσίευσης 2023-01-10
Προγραμματιστής madhava.shetty57
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vlocity Developer Extension ",
    "description": "Makes development easier for omniscripts and Integration procedures",
    "version": "1.2.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "cookies"
    ],
    "icons": {
        "128": "extension_logo_image.PNG",
        "16": "extension_logo_image.PNG",
        "48": "extension_logo_image.PNG"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "all_frames": true,
            "matches": [
                "https:\/\/*.lightning.force.com\/*",
                "https:\/\/*.my.salesforce.com\/*",
                "https:\/\/*.visualforce.com\/apex\/OmniScriptHome*",
                "https:\/\/*.visualforce.com\/apex\/IntegrationProcedureHome*",
                "https:\/\/*.visualforce.com\/apex\/*integrationproceduredesigner?*",
                "https:\/\/*.lightning.force.com\/lightning\/cmp\/vlocity_cmt__OmniDesignerAuraWrapper*",
                "https:\/\/*.vf.force.com\/apex\/*integrationproceduredesigner?id=*",
                "https:\/\/*.vf.force.com\/apex\/*omniscriptdesigner?id=*"
            ],
            "js": [
                ".\/JS Library\/jquery.min.js",
                "foreground.js",
                ".\/JS Library\/jquery-util.js",
                ".\/JS Library\/jsforce.js",
                ".\/bootstrap-3.4.1-dist\/js\/bootstrap.js",
                ".\/bootstrap-3.4.1-dist\/js\/bootstrap.min.js"
            ],
            "css": [
                ".\/bootstrap-3.4.1-dist\/css\/bootstrap.css",
                ".\/CSS\/foreground.css"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline';"
    },
    "host_permissions": [
        "https:\/\/*.my.salesforce.com\/*"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "index.html",
                "checkbox.svg",
                "draggable-svgrepo-com.svg",
                "\/omnistudio-components-app\/*",
                "\/omni-merger-app\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}