Pro Game Chat

Pro Game Chat

Chat for agar.io simple to use. Key combo shift + q to hide or show the chat! You can create new rooms and chat with your friends…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pro Game Chat",
  "version": "1.4",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.min.js",
        "background.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "*://*/*",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "/js/jquery.min.js",
    "/popup.html",
    "/chat.html",
    "/logic.js"
  ]
}