Battle.net China Auto Refresh

Auto refresh for Battle.net China when pages return error 503
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "1.0.0",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "128": "Icon.png"
  },
  "homepage_url": "http://sparanoid.com/work/battlenet-china-auto-refresh/",
  "content_scripts": [
    {
      "matches": [
        "*://*.battlenet.com.cn/*"
      ],
      "js": [
        "scripts/battlenet-china-auto-refresh.js"
      ],
      "run_at": "document_end"
    }
  ]
}