Flash Player for Chrome

Flash Player for Chrome

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.2.4",
  "name": "__MSG_name__",
  "short_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": {
    "scripts": [
      "js/bg.js"
    ]
  },
  "browser_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"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/ui.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "notifications",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "img/*",
    "css/*",
    "js/libs/ruffle.js",
    "js/libs/*.wasm"
  ]
}