Element Eraser

Element Eraser

This extension removes elements with a given class name that contain any given search terms

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Element Eraser",
  "description": "This extension removes elements with a given class name that contain any given search terms",
  "short_name": "Remove unwanted content where-ever you go",
  "version": "0.0.0.92",
  "author": "Arash Outadi",
  "browser_action": {
    "default_icon": "trashCanIcon.png",
    "default_popup": "popup.html",
    "default_title": "Start removing divs"
  },
  "background": {
    "scripts": [
      "constants.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "constants.js",
        "contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab",
    "<all_urls>",
    "storage"
  ]
}