Flash Player - flash emulator

Flash Player - flash emulator

Flash Player is a simple way to run your favorite flash content across the web using Ruffle. Play flash games online and anytime.

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.5",
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "notifications",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "16": "icons/logo.png",
    "32": "icons/logo.png",
    "48": "icons/logo.png",
    "64": "icons/logo.png",
    "128": "icons/logo.png",
    "256": "icons/logo.png"
  },
  "background": {
    "service_worker": "scripts/background.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": [
        "scripts/main.js"
      ],
      "css": [
        "inject.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "/*",
        "/library/ruffle.js",
        "/library/*.wasm"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}