Hide Nest Aware Ad

Hide Nest Aware Ad

Do you have sweet Nest cameras, but don't subscribe to Nest Aware? Me too. I use this to remove the Nest Aware ad from view.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hide Nest Aware Ad",
  "version": "1.0",
  "description": "Do you have sweet Nest cameras, but don't subscribe to Nest Aware? Me too. I use this to remove the Nest Aware ad from view.",
  "manifest_version": 2,
  "homepage_url": "https://robotsidekick.com/hide-nest-aware-ad",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://home.nest.com/*"
      ],
      "js": [
        "content/remove-ad.js"
      ]
    }
  ]
}