Flash Player for Web

Flash Player for Web

Flash Player emulator that runs any flash content (SWF files) using an Ruffle. Play favorite flash games online! Game emulator.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.2.7",
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "contextMenus",
    "notifications"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "128": "images/icon128.png",
    "256": "images/icon128.png"
  },
  "background": {
    "service_worker": "worker.js"
  },
  "action": {
    "default_title": "Click to search for embedded SWF contents",
    "default_popup": "popup.html",
    "browser_style": true
  },
  "sandbox": {
    "pages": [
      "player.html"
    ]
  },
  "content_scripts": [
    {
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "javascript/main.js"
      ],
      "css": [
        "inject.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "/*",
        "/emulator/ruffle.js",
        "/emulator/*.wasm"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}