Tab Brain

Tab Brain

Are you tired of having 100+ tabs cluttering your browser by the end of the day? We understand that some tabs are valuable while…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tab Brain",
  "version": "0.0.6",
  "background": {
    "service_worker": "background.f8b39fb6.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": []
    }
  ],
  "commands": {
    "open-extension": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Open my Chrome extension"
    }
  },
  "permissions": [
    "tabs",
    "storage",
    "offscreen",
    "tabGroups"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';",
    "sandbox": "script-src 'self' 'wasm-unsafe-eval' blob:; sandbox allow-scripts; script-src 'self' 'wasm-unsafe-eval' blob:; object-src 'self';"
  },
  "action": {
    "default_icon": "logo128.3293552f.png",
    "default_title": "Tab Brain"
  },
  "icons": {
    "16": "logo128.3293552f.png",
    "48": "logo128.3293552f.png",
    "128": "logo128.3293552f.png"
  },
  "host_permissions": [
    "http://127.0.0.1:11434/api/tags",
    "http://127.0.0.1:11434/api/generate",
    "https://localhost:11434/api/tags",
    "https://localhost:11434/api/generate"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "SCPPopup.js",
        "TailwindToastContainer.js",
        "background.js",
        "content-script.js",
        "logo.png",
        "logo128.png",
        "logo512.png",
        "manifest.json",
        "messageHandler.js",
        "offscreen.html",
        "offscreen.js",
        "popup.css",
        "popup.html",
        "popup.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ]
}