GlobiMail for Podio

GlobiMail for Podio

Initiate an email conversation from any Citrix Podio item - just click on the Email button on top of the Activity stream in Podio.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Globi Web Solutions",
  "name": "GlobiMail for Podio",
  "description": "Initiate an email conversation from any Citrix Podio item - just click on the Email button on top of the Activity stream in Podio.",
  "version": "1.1.20",
  "icons": {
    "16": "gm_icon_16.png",
    "32": "gm_icon_32.png",
    "48": "gm_icon_48.png",
    "128": "gm_icon_128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "https://podio.com/",
    "https://secure.globimail.com/",
    "https://secure.globiflow.com/",
    "https://workflow-automation.podio.com/",
    "https://mail.lcldev.globi.ca/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://podio.com/*",
        "https://*.podio.com/*",
        "https://secure.globimail.com/*",
        "https://secure.globiflow.com/*",
        "https://workflow-automation.podio.com/*",
        "https://mail.lcldev.globi.ca/*"
      ],
      "js": [
        "jquery.min.js",
        "sajax.js",
        "podio.js",
        "globiflow.js",
        "globimail.js",
        "background.js",
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js",
      "jquery.min.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "gm_icon_32.png",
    "default_popup": "options.html"
  }
}