Alt Manager for roblox

This extension allows you to manage your roblox alt account.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Alt Manager for roblox",
  "version": "1.0.2",
  "icons": {
    "1000": "assets/icons/favicon.png"
  },
  "description": "This extension allows you to manage your roblox alt account.",
  "homepage_url": "https://github.com/TheEpicFace007/roblox-alt-account-manager",
  "short_name": "Alt Manager",
  "permissions": [
    "storage",
    "cookies"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "1000": "assets/icons/favicon.png"
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false,
    "browser_style": false
  },
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "host_permissions": [
    "https://*.roblox.com/*",
    "http://*.roblox.com/*",
    "https://roblox.com/*",
    "http://roblox.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.roblox.com/*",
        "https://*.roblox.com/*",
        "http://roblox.com/*",
        "https://roblox.com/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ]
    }
  ]
}