webkitNotification BackPort

webkitNotification BackPort

提供 webkitNotification 旧版 Chrome Notification API 支持

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "提供 webkitNotification 旧版 Chrome Notification API 支持",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "injure.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 2,
  "name": "webkitNotification BackPort",
  "permissions": [
    "<all_urls>"
  ],
  "version": "1.0.0.2",
  "web_accessible_resources": [
    "webkitNotification.js"
  ]
}