Examine source code of Old Reddit Images

Inspect and view changes in Old Reddit Images 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
{
  "manifest_version": 2,
  "name": "Old Reddit Images",
  "short_name": "ORM",
  "version": "1.1.0",
  "description": "Displays linked images in comments on Old Reddit.",
  "icons": {
    "48": "icons/48.png",
    "96": "icons/96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/*"
      ],
      "js": [
        "reddit.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{48124465-8e90-4878-b2a4-f1ffd25d56e0}",
      "strict_min_version": "58.0"
    }
  },
  "permissions": [
    "storage"
  ]
}