干杯!cheers~!

干杯!cheers~!

干杯!妈妈再也不担心我不喝水了!cheers!Mom is no longer worried that I will not drink water!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "干杯!cheers~!",
  "version": "0.0.8",
  "description": "干杯!妈妈再也不担心我不喝水了!cheers!Mom is no longer worried that I will not drink water!",
  "icons": {
    "16": "./img/logo.png",
    "48": "./img/logo.png",
    "128": "./img/logo.png"
  },
  "permissions": [
    "notifications",
    "webRequestBlocking",
    "storage"
  ],
  "background": {
    "page": "./background.html"
  },
  "browser_action": {
    "default_icon": "./img/logo.png",
    "default_title": "drinkNow!",
    "default_popup": "./popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_start"
    }
  ]
}