Tab Manager - Smart Tab By NoteGPT AI

Tab Manager - Smart Tab By NoteGPT AI

Tab fixed, open tabs and reopen closed tabs in a Click. Using AI chrome manager to summarize tabs, easily collect and manage tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "2.1.4.12",
  "manifest_version": 3,
  "action": {
    "default_title": "__MSG_name__",
    "default_popup": "popup/index.html",
    "default_icon": {
      "16": "icon/logo.png",
      "32": "icon/logo.png",
      "48": "icon/logo.png",
      "128": "icon/logo.png"
    }
  },
  "background": {
    "service_worker": "background/index.js"
  },
  "icons": {
    "16": "icon/logo.png",
    "32": "icon/logo.png",
    "48": "icon/logo.png",
    "128": "icon/logo.png"
  },
  "permissions": [
    "tabs",
    "bookmarks",
    "favicon",
    "storage",
    "contextMenus",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "js": [
        "content-script/index.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/manifest.json",
        "search-engine/*",
        "css/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}