Examine source code of rotheme - theming, trading, more

Inspect and view changes in rotheme - theming, trading, more source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "rotheme - theming, trading and more",
  "description": "a useful extension to extend roblox with customised features and helpful utilities.",
  "version": "1.2.1",
  "manifest_version": 3,
  "background": {
    "scripts": [
      "scripts/_background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "scripts/rolimons.js"
      ],
      "matches": [
        "https://www.rolimons.com/*"
      ]
    },
    {
      "js": [
        "scripts/rotheme.js"
      ],
      "matches": [
        "https://rotheme.com/*",
        "https://www.rotheme.com/*"
      ]
    },
    {
      "js": [
        "scripts/theming.js"
      ],
      "matches": [
        "https://www.roblox.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "scripts/catalog.js"
      ],
      "matches": [
        "https://www.roblox.com/catalog/*"
      ]
    }
  ],
  "action": {
    "default_title": "rotheme",
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "128": "assets/smalllogov2.png"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "https://www.rolimons.com/*",
        "https://www.roblox.com/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "rotheme@bsb.dev"
    }
  }
}