Groupster

Groupster

make private groups or hop in the joiner for any tagpro server from anywhere on chrome; by Gem

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Groupster",
  "version": "1.9.9",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "description": "make private  groups or hop in the joiner for any tagpro server from anywhere on chrome; by Gem",
  "homepage_url": "http://tagpro.gg",
  "icons": {
    "16": "icons/groupster_icon2.png",
    "48": "icons/groupster_icon2.png",
    "128": "icons/groupster_icon.png"
  },
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/groupster_icon.png",
    "default_title": "Groupster",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "externally_connectable": {
    "matches": [
      "http://serene-headland-9707.herokuapp.com/*"
    ]
  },
  "permissions": [
    "storage",
    "notifications",
    "tabs",
    "https://*/*",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "src/inject/inject.js"
      ]
    }
  ]
}