Examine source code of Sourceban Augmented Moderator Steam Addon

Inspect and view changes in Sourceban Augmented Moderator Steam Addon 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
{
  "background": {
    "scripts": [
      "lib/BigInteger.min.js",
      "js/steam.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "19": "images/icon-19.png",
      "24": "images/icon-24.png",
      "32": "images/icon-32.png",
      "38": "images/icon-38.png",
      "48": "images/icon-48.png",
      "64": "images/icon-64.png",
      "96": "images/icon-96.png",
      "128": "images/icon-128.png"
    },
    "default_popup": "options/options.html",
    "default_title": "Configure SAMSA"
  },
  "content_scripts": [
    {
      "css": [
        "css/main.css"
      ],
      "js": [
        "js/content-script-steam.js"
      ],
      "matches": [
        "https://steamcommunity.com/id/*",
        "https://steamcommunity.com/profiles/*"
      ]
    }
  ],
  "description": "Helper Add-On for Community Admins",
  "icons": {
    "16": "images/icon-16.png",
    "19": "images/icon-19.png",
    "24": "images/icon-24.png",
    "32": "images/icon-32.png",
    "38": "images/icon-38.png",
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "96": "images/icon-96.png",
    "128": "images/icon-128.png"
  },
  "manifest_version": 2,
  "name": "Sourceban Augmented Moderator Steam Addon",
  "short_name": "SAMSA",
  "permissions": [
    "https://api.steampowered.com/ISteamUser/*",
    "storage"
  ],
  "version": "0.0.0.2"
}