Applet2Object

Applet2Object

Replaces all <applet> elements on a page with corresponding <object> elements, keeping all attributes and parameters intact.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "applet2object.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "description": "Replaces all <applet> elements on a page with corresponding <object> elements, keeping all attributes and parameters intact.",
  "name": "Applet2Object",
  "version": "0.2",
  "manifest_version": 2
}