Bubble

Bubble

Bubble - a new way to communicate for remote teams.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bubble",
  "version": "0.16.0",
  "manifest_version": 2,
  "description": "Bubble - a new way to communicate for remote teams.",
  "icons": {
    "128": "chrome-ext/favicon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "chrome-ext/contentscript.js",
        "runtime-es2015.js",
        "polyfills-es2015.js",
        "main-es2015.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "background": {
    "scripts": [
      "chrome-ext/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "identity",
    "identity.email",
    "storage",
    "desktopCapture"
  ],
  "browser_action": {
    "default_popup": "chrome-ext/ext-popup.html"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "web_accessible_resources": [
    "bower_components/angular/*"
  ]
}