Roblox Pro

Roblox Pro

Improve Roblox using the tools provided inside this extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Roblox Pro",
  "version": "1.0.8",
  "description": "Improve Roblox using the tools provided inside this extension.",
  "background": {
    "scripts": [
      "./js/background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "default-src 'self' https://www.google-analytics.com 'self'",
  "content_scripts": [
    {
      "css": [
        "./css/app.css"
      ],
      "matches": [
        "*://*.roblox.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "run_at": "document_end",
      "matches": [
        "*://*.roblox.com/*"
      ],
      "js": [
        "./js/app.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "./images/*"
  ],
  "browser_action": {
    "default_icon": "./images/icons/icon_128x128.png"
  },
  "permissions": [
    "<all_urls>"
  ],
  "icons": {
    "128": "./images/icons/icon_128x128.png"
  }
}