Open In Firefox

Open In Firefox

Open current tabs, links, pages (or all of them) in firefox

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCEz3PzdamntuP8WPAFpdYY8iNB3y1CvC7DcV19Zf/aQMLLqDrv5/LjE6Kk05snj/aPWb3Dm/eObJOhKfLGoFdBNfbFKaEC/lJG+j2p7Xtq2/7+KPvCugS18YcSBr3cePggLoUF3DGqsH1SUQzHyN/ZipcPQypXVVydVdUwywzOzwIDAQAB",
  "name": "Open In Firefox",
  "version": "3.1.2",
  "manifest_version": 3,
  "description": "Open current tabs, links, pages (or all of them) in firefox",
  "short_name": "Open In Firefox",
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "img/icon16.png",
      "32": "img/icon32.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    },
    "default_title": "Click to open in Firefox"
  },
  "content_scripts": [
    {
      "js": [
        "hotkey.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "contextMenus",
    "nativeMessaging",
    "storage"
  ]
}