Iframe Detector

Iframe Detector

Provides iframe information when detected on the current page, and allows them to be deleted.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "description": "Provides iframe information when detected on the current page, and allows them to be deleted.",
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "manifest_version": 2,
  "name": "Iframe Detector",
  "short_name": "IframeDetect",
  "browser_action": {
    "default_icon": "icon-32.png",
    "default_title": "Page does not contain an <iframe>",
    "default_popup": "popup.html"
  },
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "2.1",
  "homepage_url": "http://www.pericror.com/software/iframe-detector-chrome-extension/"
}