Reddit Rage Spree

Reddit Rage Spree

Open all the rage comics from a page in new tabs with one simple click! Browse f7u12 like never before

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reddit Rage Spree",
  "manifest_version": 2,
  "version": "1.3",
  "description": "Open all the rage comics from a page in new tabs with one simple click! Browse f7u12 like never before",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "background_page": "bg.html",
  "background": {
    "page": "bg.html"
  },
  "browser_action": {
    "default_icon": "icon_16.png",
    "default_title": "Begin Reddit Rage Spree",
    "popup": "f7u12.html"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://reddit.com/*",
        "http://www.reddit.com/*"
      ],
      "js": [
        "jquery-1.6.4.min.js",
        "content_script.js"
      ]
    }
  ]
}