健康提醒

健康提醒

根据国家高级营养师推荐的时刻表制作的提醒小工具(饮水、眼保健操)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "健康提醒",
  "description": "根据国家高级营养师推荐的时刻表制作的提醒小工具(饮水、眼保健操)",
  "version": "1.0.13",
  "icons": {
    "32": "img/logo32.png",
    "64": "img/logo64.png",
    "128": "img/logo128.png"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.js",
        "js/notice.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "img/logo_def.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "js/jquery.js"
  ]
}