Pipeline Gmail

Pipeline Gmail

Bring the power of Pipeline to your Google inbox.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pipeline Gmail",
  "short_name": "Pipeline",
  "description": "Bring the power of Pipeline to your Google inbox.",
  "version": "2.7.18",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "dist/js/content.js"
      ],
      "css": [
        "dist/css/datepicker3.css",
        "dist/css/jquery.timepicker.css",
        "dist/css/pipeline_gmail.css"
      ]
    }
  ],
  "permissions": [
    "https://oauth.io/*",
    "http://pld.com/*",
    "https://api.pipelinecrm.com/*",
    "https://app.pipelinecrm.com/*",
    "https://www.pipelinecrm.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://oauth.io/*"
    ]
  },
  "background": {
    "scripts": [
      "dist/js/background.js"
    ]
  },
  "web_accessible_resources": [
    "dist/js/main.js"
  ],
  "options_page": "dist/options.html",
  "icons": {
    "48": "dist/img/icon-48.png",
    "128": "dist/img/icon-128.png"
  }
}