ChinaEye

ChinaEye

Experience the Web China-style...

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ChinaEye",
  "description": "Experience the Web China-style...",
  "version": "1.0.11",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png"
  },
  "background": {
    "scripts": [
      "js/jquery-2.2.3.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon16.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "fonts/*"
  ],
  "permissions": [
    "activeTab",
    "webRequest",
    "storage",
    "http://*/*",
    "https://*/*"
  ]
}