2chmon

2chmon

2ch.hk bookmarks monitor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "2chmon",
  "description": "2ch.hk bookmarks monitor.",
  "version": "1.1.0",
  "permissions": [
    "http://2ch.hk/",
    "https://2ch.hk/",
    "storage",
    "background",
    "alarms"
  ],
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://2ch.hk/*",
        "https://2ch.hk/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "libs/underscore.js",
      "libs/Immutable.js",
      "tools.js",
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "libs/underscore.js",
    "hook.js"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}