Reddit Image Preview

Reddit Image Preview

Previewing images on reddit is faster than ever.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reddit Image Preview",
  "version": "1.5",
  "description": "Previewing images on reddit is faster than ever.",
  "background": {
    "scripts": [
      "jquery-2.2.3.min.js",
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/*",
        "*://reddit.com/*"
      ],
      "js": [
        "jquery-2.2.3.min.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Reddit Image Preview",
    "default_icon": "img-on.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "img-on.png"
  },
  "permissions": [
    "storage"
  ]
}