DESelect Search in Salesforce Marketing Cloud

DESelect Search in Salesforce Marketing Cloud

Easily search for objects in SFMC: all Content Builder objects, data extensions, query activities, data filters, automations, ...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DESelect Search in Salesforce Marketing Cloud",
  "short_name": "DESelect Search",
  "description": "Easily search for objects in SFMC: all Content Builder objects, data extensions, query activities, data filters, automations, ...",
  "version": "4.30",
  "action": {
    "default_icon": "images/logo48.png",
    "default_title": "DESelect Search"
  },
  "icons": {
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://api.deselect.io/*",
        "*://*.exacttarget.com/*"
      ],
      "run_at": "document_start",
      "all_frames": false,
      "js": [
        "lib/prettifyXML.js",
        "lib/fxp.js",
        "js/sfmc/util.js",
        "js/sfmc/logger.js",
        "js/sfmc/modules/folder.js",
        "js/sfmc/modules/contentCategories.js",
        "js/sfmc/modules/filterDefinition.js",
        "js/sfmc/modules/userInitiatedSend.js",
        "js/sfmc/modules/content.js",
        "js/sfmc/modules/email.js",
        "js/sfmc/modules/queryActivity.js",
        "js/sfmc/modules/automation.js",
        "js/sfmc/modules/dataExtension.js",
        "js/sfmc/rest.js",
        "js/sfmc/soap.js",
        "js/sfmc/xml.js",
        "js/constants.js",
        "js/popup.js",
        "js/env.js"
      ],
      "css": [
        "css/style.css"
      ]
    }
  ],
  "background": {
    "service_worker": "js/service_worker.js"
  },
  "permissions": [
    "activeTab",
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "https://*.deselect.io/*",
    "https://*.exacttarget.com/",
    "https://api.deselect.io/*",
    "https://dev-api.deselect.io/*",
    "https://mc.exacttarget.com/cloud/update-token.json",
    "https://*.marketingcloudapis.com/*",
    "*://*.exacttarget.com/*",
    "https://*.exacttargetapis.com/platform-internal/v1/aggregator",
    "http://localhost:1337/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/logo48.png",
        "css/style.css",
        "js/popup.js",
        "css/salesforce-lightning-design-system.min.css",
        "images/pin-icon.svg",
        "images/pinned-icon.svg",
        "images/close-icon.svg",
        "images/DESelect-logo.png",
        "images/pinned-grey.svg",
        "images/pinned-orange.svg",
        "images/search-normal.svg",
        "images/search-hover.svg",
        "images/chevron.svg",
        "images/popup-arrow.svg",
        "images/info.svg",
        "images/close-extension-icon.svg",
        "images/close-grey.svg",
        "images/alert-grey.svg",
        "images/error-white.svg"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}