ChatGT

ChatGT

Anonymous live chat on every website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ChatGT",
  "description": "Anonymous live chat on every website.",
  "version": "1.0.1",
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "https://*.firebase.com/",
    "https://*.firebaseio.com/"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "icon.png"
  },
  "content_security_policy": "script-src 'self' https://*.firebaseio.com/;https://*.firebase.com/; object-src 'self'"
}