Examine source code of Vlocity Developer Extension

Inspect and view changes in Vlocity Developer Extension source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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": {
    "16": "extension_logo_image.PNG",
    "48": "extension_logo_image.PNG",
    "128": "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": [
        "<all_urls>"
      ]
    }
  ]
}