RoSaver

RoSaver

Save your robux from purchasing items!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RoSaver",
  "action": {
    "default_popup": "popup.html"
  },
  "manifest_version": 3,
  "version": "0.181",
  "description": "Save your robux from purchasing items!",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.js",
        "js/popup.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "storage",
    "notifications"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://*.roblox.com/game-pass/",
    "https://*.roblox.com/catalog/",
    "https://*.roblox.com/",
    "https://roblox.com/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png",
        "css/*.css",
        "js/*.js",
        "load.js",
        "background.js",
        "popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}