Auto Iframes Remover

Auto Iframes Remover

This extension will automatically remove all iframes on all websites when the page loads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "3.6.9",
  "manifest_version": 3,
  "offline_enabled": true,
  "short_name": "AiR",
  "homepage_url": "https://wildwestwiki.com/wiki/1090025/auto-iframes-remover-air-chrome-extension",
  "name": "Auto Iframes Remover",
  "description": "This extension will automatically remove all iframes on all websites when the page loads.",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "badge": {
      "display": "block",
      "text": "0"
    },
    "default_popup": "options.html",
    "default_title": "Auto Iframes Remover V3 series"
  },
  "options_page": "options.html",
  "icons": {
    "48": "airsmall.png",
    "128": "air.png"
  }
}