reddit: see full images

reddit: see full images

Simple, lightweight extension to expand the images on reddit. No idea why reddit can't do it itself, but whatever...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "reddit: see full images",
  "version": "2021.2021.2021",
  "description": "Simple, lightweight extension to expand the images on reddit. No idea why reddit can't do it itself, but whatever...",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "https://www.reddit.com/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://www.reddit.com/*"
      ],
      "exclude_matches": [
        "https://www.reddit.com/*/*/comments/*"
      ],
      "css": [
        "./css/main.css"
      ]
    },
    {
      "run_at": "document_start",
      "matches": [
        "https://www.reddit.com/*/*/comments/*"
      ],
      "css": [
        "./css/main-comments.css"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}