Layer Killer

Layer Killer

This extension allows you to hide those pesky publicity layers that you find all over the internet with a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Layer Killer",
  "short_name": "Layer Killer",
  "version": "0.2",
  "homepage_url": "https://matto.io",
  "description": "This extension allows you to hide those pesky publicity layers that you find all over the internet with a single click.",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    },
    "default_title": "Layer Killer"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "permissions": [
    "notifications"
  ],
  "web_accessible_resources": [
    "img/*"
  ],
  "manifest_version": 2
}