Overlay Remover Auto

Overlay Remover Auto

Automaticaly close detected overlays.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Overlay Remover Auto",
  "author": "InanZen",
  "description": "Automaticaly close detected overlays.",
  "version": "1.1.1",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "options_ui": {
    "page": "ora_options.html"
  },
  "background": {
    "scripts": [
      "js/ora_background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "js/overlay_remover.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "OverlayRemoverAuto",
    "default_popup": "ora_popup.html"
  },
  "icons": {
    "128": "images/jalousie_open_128.png"
  }
}