Flash Player Enabler

Flash Player Enabler

Run any flash content for web, using a emulator Flash Player. Play flash games online.

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.0.4",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "notifications"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "128": "icons/icon128.png"
  },
  "action": {
    "default_icon": "icons/icon128.png",
    "default_popup": "components/popup.html",
    "default_title": "__MSG_title__"
  },
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "sandbox": {
    "pages": [
      "components/playerFlash.html"
    ]
  },
  "content_scripts": [
    {
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "javaScripts/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "libs/ruffle/*.js",
        "libs/ruffle/*.wasm"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "commands": {
    "_execute_action": {}
  }
}