Quick Copy Roblox IDs

Adds a right click context menu item on https://www.roblox.com for quickly copying asset and user IDs.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Quick Copy Roblox IDs",
  "short_name": "Quick Copy Ro-IDs",
  "version": "1.0.4",
  "description": "Adds a right click context menu item on https://www.roblox.com for quickly copying asset and user IDs.",
  "manifest_version": 2,
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "src/index.js"
    ],
    "persistent": false
  }
}