Flash Player Extension For Web

Flash Player Extension For Web

Any flash content for web can be run using a Flash Player. E.g. flash games.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": {
      "128": "icons/logo_webflash.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/content-script.js"
      ],
      "match_about_blank": false,
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extDes__",
  "icons": {
    "128": "icons/logo_webflash.png"
  },
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "permissions": [
    "declarativeNetRequest",
    "alarms",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "version": "1.0.1",
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "homepage_url": "https://chrome.google.com/webstore/detail/flashplayer/pkomojeklgbndilokjedodpebdbekiod?utm_medium=extension&utm_source=flashplayer"
}