Agar Mouse Control

Agar Mouse Control

Provides Agario users with customizable mouse and keyboard controls to dominate the servers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Agar Mouse Control",
  "short_name": "Agar Mouse",
  "version": "1.0.2",
  "description": "Provides Agario users with customizable mouse and keyboard controls to dominate the servers",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "page_action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html",
    "default_title": "Agar Mouse Control Center"
  },
  "background": {
    "scripts": [
      "jquery-3.2.1.js",
      "eventPage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://agar.io/*",
        "*://petridish.pw/*"
      ],
      "js": [
        "jquery-3.2.1.js",
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "*://agar.io/*",
    "*://petridish.pw/*",
    "storage"
  ],
  "web_accessible_resources": [
    "script.js"
  ]
}