实时天气预报(RTWeather)

实时天气预报(RTWeather)

实时天气预报,数据来源http://www.weather.com.cn/

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "实时天气预报(RTWeather)",
  "version": "2.1",
  "manifest_version": 2,
  "description": "实时天气预报,数据来源http://www.weather.com.cn/",
  "icons": {
    "48": "main.png"
  },
  "background": {
    "page": "bg.html"
  },
  "browser_action": {
    "default_icon": "main.png",
    "default_title": "test",
    "default_popup": "index.html"
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "http://www.weather.com.cn/",
    "http://m.weather.com.cn/",
    "http://weather.ui321.com/"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'"
}