Tab Browser Manager

Tab Browser Manager

Tabs and Bookmark manager that stores your most recent tabs & bookmarks for ease-of-access

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 Browser Manager",
  "version": "1.0.0",
  "description": "Tabs and Bookmark manager that stores your most recent tabs & bookmarks for ease-of-access",
  "action": {
    "default_title": "Tab Browser Manager - Manage your browser from one place"
  },
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "unlimitedStorage",
    "tabs",
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "https://*/",
    "http://*/"
  ]
}