BlackboxAI

BlackboxAI

Write Code better and faster. BLACKBOX AI is an AI coding assistant that helps developers by providing real-time code suggestions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BlackboxAI",
  "version": "3.1.2",
  "description": "Write Code better and faster. BLACKBOX AI is an AI coding assistant that helps developers by providing real-time code suggestions",
  "icons": {
    "16": "/icons/default/16x16.png",
    "19": "/icons/default/19x19.png",
    "38": "/icons/default/38x38.png",
    "48": "/icons/default/48x48.png",
    "128": "/icons/default/128x128.png"
  },
  "action": {
    "default_icon": {
      "16": "/icons/default/16x16.png",
      "19": "/icons/default/19x19.png",
      "38": "/icons/default/38x38.png",
      "48": "/icons/default/48x48.png",
      "128": "/icons/default/128x128.png"
    },
    "default_title": "BlackboxAI"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "readability.js",
        "turndown.js",
        "bot.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background/index.js"
  },
  "options_page": "/options/index.html",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/vendor/Jcrop.gif",
        "/content/pixel.png"
      ]
    }
  ],
  "commands": {
    "take-screenshot": {
      "description": "BlackboxAI Vision",
      "suggested_key": {
        "default": "Ctrl+E",
        "mac": "Command+E"
      }
    }
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "permissions": [
    "storage",
    "scripting",
    "activeTab",
    "sidePanel",
    "tabs",
    "scripting"
  ],
  "omnibox": {
    "keyword": "bx"
  }
}