HKEPC Plus(Non-Official)

HKEPC Plus(Non-Official)

This extension is targeted for providing better user experience of surfing http://www.hkepc.com/forum.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HKEPC Plus(Non-Official)",
  "version": "0.1.1",
  "description": "This extension is targeted for providing better user experience of surfing http://www.hkepc.com/forum.",
  "icons": {
    "16": "content/browser_action/hkepc+.png",
    "64": "content/browser_action/hkepc+.png",
    "128": "content/browser_action/hkepc+.png"
  },
  "browser_action": {
    "default_icon": "content/browser_action/hkepc+.png",
    "default_popup": "content/browser_action/popup.html"
  },
  "author": "[email protected]",
  "background": {
    "matches": [
      "http://www.hkepc.com/forum/*",
      "https://www.hkepc.com/forum/*"
    ],
    "scripts": [
      "plugins/q/q.js",
      "plugins/jquery/jquery-2.1.3.js",
      "plugins/underscore/underscore.js",
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "plugins/*",
    "browser_action/popup.html",
    "templates/*",
    "content/font/*",
    "content/addons/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; script-src 'self' 'unsafe-inline'; object-src 'self'",
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "http://www.hkepc.com/forum/*",
        "https://www.hkepc.com/forum/*"
      ],
      "js": [
        "plugins/jquery/jquery-2.1.3.js",
        "content.js"
      ],
      "css": []
    }
  ],
  "options_page": "content/options/index.html",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "http://www.hkepc.com/forum/*"
  ]
}