Second Brain

Second Brain

AI-powered writing companion that will help you write better articles, emails, messages and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Second Brain",
  "description": "AI-powered writing companion that will help you write better articles, emails, messages and more.",
  "version": "1.2",
  "icons": {
    "16": "./assets/manifest-icons/16.png",
    "32": "./assets/manifest-icons/32.png",
    "48": "./assets/manifest-icons/48.png",
    "128": "./assets/manifest-icons/128.png"
  },
  "manifest_version": 3,
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "identity.email",
    "identity"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "https://secondbrainai.herokuapp.com/api/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "home.html",
    "default_title": "Select text and click ALT+G or ALT+R to start",
    "default_icon": {
      "16": "./assets/manifest-icons/16.png",
      "32": "./assets/manifest-icons/32.png",
      "48": "./assets/manifest-icons/48.png",
      "128": "./assets/manifest-icons/128.png"
    }
  },
  "commands": {
    "complete": {
      "suggested_key": {
        "default": "Alt+G",
        "mac": "Alt+G"
      },
      "description": "Generate text"
    },
    "rephrase": {
      "suggested_key": {
        "default": "Alt+R",
        "mac": "Alt+R"
      },
      "description": "Reprase text"
    },
    "custom1": {
      "suggested_key": {
        "default": "Alt+1",
        "mac": "Alt+1"
      },
      "description": "Custom 1"
    },
    "custom2": {
      "suggested_key": {
        "default": "Alt+2",
        "mac": "Alt+2"
      },
      "description": "Custom 2"
    }
  }
}