Water Engine

Water Engine

What is 'Water'? 'Water'(https://howsthewater.netlify.com/) is a free web application aiming to reveal the physical layer of the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Water Engine",
  "version": "1.0",
  "permissions": [
    "webRequest",
    "<all_urls>",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://howsthewater.netlify.com/"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "water128.png"
  }
}