BrowserFairy

BrowserFairy

This extension allows you to send the current page to a different browser using the macOS App BrowserFairy

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BrowserFairy",
  "author": "venqoo GmbH",
  "description": "This extension allows you to send the current page to a different browser using the macOS App BrowserFairy",
  "version": "2.0.0",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "nativeMessaging"
  ],
  "browser_action": {
    "default_title": "BrowserFairy",
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    }
  }
}