SendPulse Gmail Extension

SendPulse Gmail Extension

The SendPulse Gmail Gadget is an extension that you can use while working in Gmail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SendPulse Gmail Extension",
  "author": "Andrew Koidan <[email protected]>, Trasparen",
  "description": "The SendPulse Gmail Gadget is an extension that you can use while working in Gmail.",
  "version": "0.5",
  "permissions": [
    "cookies",
    "https://www.facebook.com/",
    "https://api.sendpulse.com/"
  ],
  "manifest_version": 2,
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon-16.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/manifest.js",
        "js/vendor.js",
        "js/app.js"
      ],
      "matches": [
        "https://mail.google.com/*",
        "https://www.facebook.com/"
      ],
      "css": [
        "css/app.css"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "128": "icons/icon-128.png"
  }
}