Examine source code of TabMagic - Bookmark & Tab Manager

Inspect and view changes in TabMagic - Bookmark & Tab Manager source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TabMagic - Bookmark & Tab Manager",
  "description": "Manage your tabs, bookmark the web, and share resources with TabMagic. Visit https://tabmagic.app for more info.",
  "author": "Michael Law",
  "version": "1.5.0",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "unlimitedStorage",
    "scripting",
    "contextMenus"
  ],
  "background": {
    "service_worker": "./background.js"
  },
  "commands": {
    "tab-magic-panel": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space",
        "mac": "Command+Shift+Space"
      },
      "description": "Open Magic Panel"
    },
    "easy-save": {
      "suggested_key": {
        "default": "Ctrl+E",
        "mac": "Command+E"
      },
      "description": "Open Easy Save"
    }
  },
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "twemoji.min.js",
        "content.js"
      ],
      "css": [
        "app.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "bookmark.html",
        "app.css",
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "16": "./assets/icon16.png",
    "32": "./assets/icon32.png",
    "128": "./assets/icon128.png"
  },
  "manifest_version": 3
}