Roblox Statistics

Roblox Statistics

Providing more information.

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 Statistics",
  "short_name": "Roblox Stats",
  "description": "Providing more information.",
  "version": "2.2.4",
  "icons": {
    "16": "icon/16.png",
    "128": "icon/128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "options_page": "popup.html",
  "options_ui": {
    "chrome_style": true,
    "page": "popup.html"
  },
  "permissions": [
    "storage",
    "*://*.roblox.com/",
    "*://*.exchangeratesapi.io/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "main.js"
      ],
      "matches": [
        "*://*.roblox.com/*"
      ],
      "run_at": "document_end"
    }
  ]
}