Roblox Themes

Roblox Themes

A ROBLOX chrome extension that allows users to pick custom colors for the website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "src/scripts/background.js"
    ]
  },
  "name": "Roblox Themes",
  "short_name": "RbxThemes",
  "version": "1.0.0.0",
  "description": "A ROBLOX chrome extension that allows users to pick custom colors for the website.",
  "author": "Ray",
  "permissions": [
    "activeTab",
    "storage",
    "http://www.roblox.com/*",
    "https://www.roblox.com/*",
    "http://web.roblox.com/*",
    "https://web.roblox.com/*",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.roblox.com/*",
        "http://web.roblox.com/*",
        "https://www.roblox.com/*",
        "https://web.roblox.com/*"
      ],
      "js": [
        "src/scripts/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "src/resources/images/icon48.png",
    "default_title": "Roblox Themes",
    "default_popup": "src/resources/popup.html"
  },
  "icons": {
    "16": "src/resources/images/icon16.png",
    "48": "src/resources/images/icon48.png",
    "96": "src/resources/images/icon96.png",
    "128": "src/resources/images/icon128.png"
  },
  "web_accessible_resources": [
    "src/resources/styles/main.css"
  ]
}