Postwire Gmail Chrome Ext

Postwire Gmail Chrome Ext

Provide visually compelling content that’s easy to consume, share & collaborate on. All from one place. Created right from Gmail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Postwire Gmail Chrome Ext",
  "short_name": "Postwire",
  "description": "Provide visually compelling content that’s easy to consume, share & collaborate on. All from one place. Created right from Gmail.",
  "version": "0.9.15",
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "web_accessible_resources": [
    "templates/*",
    "img/insert_btn.png",
    "img/insert_btn_over.png",
    "js/jquery-1.11.0.min.map",
    "js/underscore-min.map"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "css": [],
      "js": [
        "js/jquery-1.11.0.min.js",
        "js/underscore-min.js",
        "core.js",
        "gmail_content_script.js"
      ]
    },
    {
      "matches": [
        "*://www.postwire.com/*"
      ],
      "css": [],
      "js": [
        "js/jquery-1.11.0.min.js",
        "js/underscore-min.js",
        "core.js",
        "postwire_content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/jquery-1.11.0.min.js",
      "js/underscore-min.js",
      "mixpanel.js",
      "core.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' https://cdn.mxpnl.com https://www.postwire.com; object-src 'self'",
  "permissions": [
    "tabs",
    "storage",
    "https://www.postwire.com/",
    "https://cdn.mxpnl.com/"
  ]
}