Reddit Watchdog

Reddit Watchdog

Insight into Reddit user's commenting habits

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 Watchdog",
  "description": "Insight into Reddit user's commenting habits",
  "version": "1.0",
  "permissions": [
    "*://*.reddit.com/**/comments/**"
  ],
  "web_accessible_resources": [
    "img/spinner.gif"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/**/comments/**"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/vendor.bundle.js",
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  }
}