天气精灵

天气精灵

最便捷、最精准的天气资讯插件!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "/images/icon_32.png",
    "default_popup": "pop.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/contentscript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "zh_CN",
  "description": "最便捷、最精准的天气资讯插件!",
  "icons": {
    "16": "/images/icon_16.png",
    "32": "/images/icon_32.png",
    "128": "/images/icon_128.png",
    "256": "/images/icon_256.png"
  },
  "manifest_version": 2,
  "name": "天气精灵",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "notifications",
    "webRequest",
    "webRequestBlocking",
    "nativeMessaging",
    "management"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.1",
  "web_accessible_resources": [
    "js/contentscript.js"
  ]
}