Popups in Reddit Comments

Popups in Reddit Comments

Tired of opening every link when reading comments in Reddit? This extension pops open links within a window to help you Reddit more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Popups in Reddit Comments",
  "short_name": "Reddit Popups",
  "description": "Tired of opening every link when reading comments in Reddit? This extension pops open links within a window to help you Reddit more.",
  "author": "rossjoo.com",
  "version": "0.4.0",
  "icons": {
    "16": "/images/icon16.png",
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  },
  "permissions": [
    "http://www.reddit.com/",
    "http://imgur.com/",
    "http://*.imgur.com/",
    "http://gfycat.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "19": "/images/icon19.png",
      "38": "/images/icon38.png"
    },
    "default_title": "Image Popups",
    "default_popup": "menu.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.reddit.com/*/comments/*"
      ],
      "js": [
        "jquery.js",
        "modal.js",
        "link.js",
        "main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/css/*",
    "/images/transparent-left.png",
    "/images/transparent-right.png",
    "/images/loader.gif"
  ]
}