日历

日历

简单,快速,帮您查找最新的节日,节气,农历,是您查看日历的好帮手!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "日历",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "简单,快速,帮您查找最新的节日,节气,农历,是您查看日历的好帮手!",
  "icons": {
    "48": "res/crx.png"
  },
  "content_scripts": [
    {
      "js": [
        "content_scripts.js"
      ],
      "matches": [
        "http://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_action": {
    "default_icon": "res/icon.gif",
    "default_popup": "popup.html"
  },
  "permissions": [
    "http://*/*",
    "nativeMessaging"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "background": {
    "page": "background.html"
  }
}