Enable Google Generative AI

Enable Google Generative AI

Enable Google Generative AI in Firefox.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_addonName__",
  "default_locale": "en_GB",
  "description": "__MSG_addonDescription__",
  "author": "__MSG_addonAuthorsList__",
  "version": "1.0.3",
  "homepage_url": "https://github.com/robberphex/GoogleGenerativeAIInFirefox",
  "icons": {
    "48": "icons/icon.svg",
    "96": "icons/icon.svg"
  },
  "permissions": [
    "activeTab",
    "webRequest",
    "webRequestBlocking",
    "*://www.google.com/*",
    "*://bard.google.com/*",
    "*://labs.google.com/*"
  ],
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon.svg",
    "default_title": "__MSG_addonName__"
  },
  "sidebar_action": {
    "default_icon": {
      "48": "icons/icon.svg",
      "96": "icons/icon.svg"
    },
    "default_title": "Google Bard",
    "default_panel": "src/sidebar.html",
    "open_at_install": false
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{e59f8c6c-0c1f-4807-991d-dbe71d589ce3}"
    }
  }
}