Flash Player

Flash Player

Flash Player runs and saves any flash file across the web. The Addon allows you to add any flash file into the app's playlist and access them on any website by simply clicking an extension icon.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.1.9",
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "ru",
  "browser_action": {
    "default_icon": "img/32.png",
    "default_title": "__MSG_title__"
  },
  "icons": {
    "128": "img/128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "/js/lib/jquery-3.2.1.min.js",
        "/js/lib/purify.min.js",
        "/js/content.js"
      ],
      "css": [
        "/css/flpl-sidebar.css"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "/js/iframe-access.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "/js/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "downloads",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "/img/*"
  ],
  "content_security_policy": "script-src 'self';  object-src 'self'"
}