Comic Helper

Comic Helper

Automatically load secret panels for web comics

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Comic Helper",
  "version": "3.4.1",
  "description": "Automatically load secret panels for web comics",
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.smbc-comics.com/*"
      ],
      "js": [
        "jquery-1.8.3.min.js",
        "common.js",
        "smbc.js"
      ]
    },
    {
      "matches": [
        "http://www.amazingsuperpowers.com/*"
      ],
      "js": [
        "jquery-1.8.3.min.js",
        "common.js",
        "amazingsuperpowers.js"
      ]
    },
    {
      "matches": [
        "http://*.xkcd.com/*"
      ],
      "js": [
        "jquery-1.8.3.min.js",
        "common.js",
        "xkcd.js"
      ]
    },
    {
      "matches": [
        "http://*.abstrusegoose.com/*"
      ],
      "js": [
        "jquery-1.8.3.min.js",
        "common.js",
        "abstrusegoose.js"
      ]
    },
    {
      "matches": [
        "http://*.boatcrime.com/*"
      ],
      "js": [
        "jquery-1.8.3.min.js",
        "common.js",
        "bc.js"
      ]
    },
    {
      "matches": [
        "http://*.qwantz.com/*"
      ],
      "js": [
        "jquery-1.8.3.min.js",
        "common.js",
        "qwantz.js"
      ]
    },
    {
      "matches": [
        "http://reader.google.com/reader/*",
        "http://www.google.com/reader/*"
      ],
      "js": [
        "jquery-1.8.3.min.js",
        "json2.js",
        "common.js",
        "reader.user.js"
      ]
    }
  ]
}