Flash Player for Web (update 2021)

Flash Player for Web (update 2021)

It's an emulator for Flash Player that runs your favorite flashes using Ruffle.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "icons": {
    "16": "assets/icons/16.png",
    "32": "assets/icons/32.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png",
    "180": "assets/icons/180.png"
  },
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "js/bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "app/common.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "app/*"
  ],
  "browser_action": {
    "default_popup": "html/popup.html",
    "browser_style": true
  },
  "version": "1.0.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}