SuperNova SWF Enabler

SuperNova SWF Enabler

Allow users to easily play their favorite SWF Game Content

Additional files are visible only to premium users

manifest.json


{
  "name": "SuperNova SWF Enabler",
  "developer": {
    "name": "Tactics Technology LLC"
  },
  "short_name": "SuperNova",
  "version": "1.0",
  "description": "Allow users to easily play their favorite SWF Game Content",
  "background": {
    "scripts": [
      "scripts/lib/jquery.js",
      "scripts/lib.js",
      "scripts/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "contentSettings",
    "nativeMessaging",
    "https://*.getsupernova.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "scripts/lib/jquery.js",
        "scripts/lib.js",
        "scripts/content.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "scripts/afterpage.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/icon-16x16.png",
      "32": "images/icon-32x32.png",
      "48": "images/icon-48x48.png",
      "128": "images/icon-128x128.png",
      "256": "images/icon-256x256.png"
    },
    "default_popup": "pages/ui.html"
  },
  "options_page": "pages/settings.html",
  "icons": {
    "16": "images/icon-16x16.png",
    "32": "images/icon-32x32.png",
    "48": "images/icon-48x48.png",
    "128": "images/icon-128x128.png"
  },
  "web_accessible_resources": [
    "css/notifications.css",
    "css/webfonts/*",
    "images/icon-16x16.png",
    "scripts/notifications.js",
    "scripts/enabler.js",
    "pages/enabler.html",
    "pages/ui.html",
    "scripts/supernovalauncher.js",
    "enabler.html",
    "texts/notifications.json",
    "extension.config.json"
  ],
  "manifest_version": 2,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}