Flash Games Emulator

Flash Games Emulator

Fastest way to run favorite flash content (SWF) across the web!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "1.0.1",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "icons": {
    "16": "img/icon.png",
    "32": "img/icon.png",
    "48": "img/icon.png",
    "64": "img/icon.png",
    "128": "img/icon.png",
    "256": "img/icon.png"
  },
  "background": {
    "service_worker": "js/bg.js"
  },
  "action": {
    "default_icon": {
      "16": "img/icon.png",
      "32": "img/icon.png",
      "48": "img/icon.png",
      "64": "img/icon.png",
      "128": "img/icon.png",
      "256": "img/icon.png"
    },
    "default_title": "Click to search for embedded SWF contents",
    "default_popup": "components/popup.html"
  },
  "sandbox": {
    "pages": [
      "components/player.html"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/inject.css"
      ],
      "js": [
        "js/page.js"
      ],
      "match_about_blank": true,
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "https://fflashgames.com/"
      ],
      "css": [
        "css/render_modal.css"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "contextMenus",
    "notifications"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "css/*",
        "/js/libs/ruffle.js",
        "/js/libs/*.wasm"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}