Progressive Web Apps for Firefox

Progressive Web Apps for Firefox

A tool to install, manage and use Progressive Web Apps (PWAs) in Mozilla Firefox

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "homepage_url": "https://pwasforfirefox.filips.si/",
  "version": "2.12.0",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "48": "images/addon-logo.svg",
    "96": "images/addon-logo.svg",
    "192": "images/addon-logo.svg"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "css": []
    }
  ],
  "browser_action": {
    "default_icon": "images/browser-action.svg",
    "default_popup": "sites/manage.html"
  },
  "page_action": {},
  "permissions": [
    "http://*/*",
    "https://*/*",
    "nativeMessaging",
    "notifications",
    "storage"
  ],
  "optional_permissions": [
    "webNavigation",
    "webRequest",
    "webRequestBlocking"
  ]
}