Ruffle - Flash Emulator

Ruffle - Flash Emulator

Puts Flash back on the web where it belongs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Ruffle - Flash Emulator",
  "short_name": "Ruffle",
  "version": "0.1.0.1201",
  "default_locale": "en",
  "description": "__MSG_description__",
  "homepage_url": "https://ruffle.rs/",
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "dist/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://sso.godaddy.com/*",
        "https://authentication.td.com/*",
        "https://*.twitch.tv/*",
        "https://www.tuxedocomputers.com/*",
        "https://*.taobao.com/*",
        "https://*.time4learning.com/*",
        "https://*.edgenuity.com/*"
      ],
      "js": [
        "dist/content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; script-src 'wasm-unsafe-eval' 'self'; style-src 'unsafe-inline'; connect-src *; media-src *; img-src data:;"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png",
    "180": "images/icon180.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "incognito": "split",
  "version_name": "0.1.0 nightly 2024-05-07",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}