Examine source code of zhoo.app

Inspect and view changes in zhoo.app source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "zhoo.app",
  "description": "Super simple chat which is also available as a browser extension",
  "version": "1.3",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F"
      },
      "description": "Opens hello.html"
    }
  },
  "icons": {
    "16": "logo_16.png",
    "48": "small_logo.png",
    "128": "logo.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "https://zhoo.app/*",
    "alarms"
  ],
  "web_accessible_resources": [
    "notification.mp3"
  ],
  "content_security_policy": "script-src 'self' https://zhoo.app; object-src 'self'"
}