Clearedin

Clearedin

The Clearedin Chrome Extension protects corporate email accounts on G Suite and Microsoft 365. For more information, please visit…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "5.0.0",
  "homepage_url": "http://use.clearedin.com",
  "background": {
    "scripts": [
      "jquery-3.3.1.min.js",
      "extension.js",
      "background.js"
    ]
  },
  "page_action": {
    "default_popup": "options.html"
  },
  "icons": {
    "16": "img/Logo-32x32.png",
    "48": "img/Logo-48x48.png",
    "128": "img/Logo-128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "inboxsdk.js",
        "punycode.js",
        "extension.js",
        "app.js",
        "jquery-3.3.1.min.js",
        "jquery.pagewalkthrough.min.js"
      ],
      "css": [
        "css/styles.css",
        "css/bootstrap-iso.css",
        "css/jquery.pagewalkthrough.min.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://outlook.office.com/owa/*",
        "https://outlook.office365.com/owa/*",
        "https://outlook.office.com/mail/*",
        "https://outlook.office365.com/mail/*"
      ],
      "js": [
        "extension.js",
        "jquery-3.3.1.min.js",
        "jquery.pagewalkthrough.min.js",
        "owa-app-new.js"
      ],
      "css": [
        "css/styles-owa-new.css",
        "css/bootstrap-iso.css",
        "css/jquery.pagewalkthrough.min.css"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": false
  },
  "manifest_version": 2,
  "default_locale": "en",
  "minimum_chrome_version": "42.0",
  "permissions": [
    "cookies",
    "system",
    "system.cpu",
    "declarativeContent",
    "https://mail.google.com/*",
    "https://outlook.office.com/*",
    "https://outlook.office365.com/*",
    "https://api1.clearedin.com/*",
    "https://use.clearedin.com/*",
    "tabs",
    "notifications"
  ],
  "content_security_policy": "script-src 'self' https://mail.google.com/ https://outlook.office.com/ https://outlook.office.com/ https://api1.clearedin.com https://use.clearedin.com; object-src 'self'",
  "web_accessible_resources": [
    "conf/configuration.json",
    "use.clearedin.com/*",
    "img/*",
    "css/*"
  ]
}