iframe eraser

iframe eraser

hide any iframe toggle on click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "iframe eraser",
  "version": "0.0.8",
  "description": "hide any iframe toggle on click.",
  "permissions": [
    "storage",
    "tabs"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [],
      "js": [
        "jquery-3.2.1.min.js",
        "modules/common.js",
        "modules/_chrome.js",
        "share.js",
        "content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "browser_action": {},
  "background": {
    "scripts": [
      "modules/_chrome.js",
      "share.js",
      "background.js"
    ]
  }
}