XKCD+R

XKCD+R

Display Reddit's best comments along XKCD strips!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": false,
    "scripts": [
      "src/bg/background.js"
    ]
  },
  "content_scripts": [
    {
      "css": [],
      "js": [
        "src/inject/inject.js",
        "js/jquery/jquery.js"
      ],
      "matches": [
        "*://xkcd.com/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "description": "Display Reddit's best comments along XKCD strips!",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2,
  "name": "XKCD+R",
  "page_action": {
    "default_icon": "icons/icon38.png",
    "default_title": "XKCD+R"
  },
  "permissions": [
    "tabs",
    "storage",
    "*://xkcd.com/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.13"
}