Tabbana - manage tabs with instructions.

Tabbana - manage tabs with instructions.

Manage your browser tabs with natural language instructions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tabbana - manage tabs with instructions.",
  "short_name": "Tabbana",
  "description": "Manage your browser tabs with natural language instructions.",
  "homepage_url": "https://github.com/vamsi-aribandi/tabbana",
  "version": "0.2",
  "version_name": "0.2",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "permissions": [
    "storage",
    "tabs"
  ],
  "icons": {
    "16": "icons/16x16.png",
    "24": "icons/24x24.png",
    "32": "icons/32x32.png",
    "128": "icons/128x128.png"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "action": {
    "default_title": "Tabbana - manage tabs with instructions.",
    "default_popup": "popup/popup.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  },
  "web_accessible_resources": [
    {
      "resources": [
        "ai/functions.json",
        "ai/prompts.json"
      ],
      "matches": []
    }
  ]
}