Chatter Monitor

Chatter Monitor

Use your Salesforce.com Chatter account from your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chatter Monitor",
  "version": "2.1.0",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; img-src * data:; object-src 'self'",
  "description": "Use your Salesforce.com Chatter account from your browser.",
  "icons": {
    "16": "./img/16.png",
    "48": "./img/48.png",
    "128": "./img/128.png"
  },
  "web_accessible_resources": [
    "/img/48.png"
  ],
  "permissions": [
    "notifications",
    "https://login.salesforce.com/*",
    "https://*.salesforce.com/services/*"
  ],
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://login.salesforce.com/services/oauth2/success*",
        "https://test.salesforce.com/services/oauth2/success*"
      ],
      "js": [
        "js/oauth2_inject.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "./img/128.png",
    "default_title": "Chatter Monitor",
    "default_popup": "popup.html"
  }
}