Alfred Integration

Alfred Integration

Integrate Firefox with Alfred — Search your Firefox bookmarks & history and control Firefox tabs from Alfred.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "browser_style": true,
    "default_title": "Alfred",
    "default_popup": "popup.html",
    "default_icon": {
      "32": "icons/bowler.svg"
    }
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "74.0"
    }
  },
  "permissions": [
    "<all_urls>",
    "bookmarks",
    "downloads",
    "history",
    "tabs",
    "nativeMessaging"
  ],
  "background": {
    "scripts": [
      "alfred.js"
    ],
    "persistent": true
  },
  "icons": {
    "32": "icons/bowler-black.svg",
    "48": "icons/bowler-black.svg",
    "96": "icons/bowler-black.svg",
    "128": "icons/bowler-black.svg"
  },
  "manifest_version": 2,
  "name": "Alfred Integration",
  "version": "1.2.0",
  "description": "Integrates Firefox with Alfred."
}