TabMagic - Bookmark & Tab Manager

TabMagic - Bookmark & Tab Manager

Manage your tabs, bookmark the web, and share resources with TabMagic. Visit https://tabmagic.app for more info.

Merlin
Additional files are visible only to premium users

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
}