Honey Tab

Honey Tab

一个帮你管理众多浏览器窗口、标签页的小工具

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Honey Tab",
  "version": "1.0.0",
  "description": "一个帮你管理众多浏览器窗口、标签页的小工具",
  "manifest_version": 3,
  "minimum_chrome_version": "96",
  "permissions": [
    "tabs",
    "tabGroups",
    "contextMenus",
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' http://localhost; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "icons/*",
        "images/*",
        "fonts/*"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/honey-tab-x16.png",
      "32": "icons/honey-tab-x32.png",
      "48": "icons/honey-tab-x48.png",
      "128": "icons/honey-tab-x128.png"
    }
  },
  "icons": {
    "16": "icons/honey-tab-x16.png",
    "32": "icons/honey-tab-x32.png",
    "48": "icons/honey-tab-x48.png",
    "128": "icons/honey-tab-x128.png"
  },
  "commands": {
    "merge-windows": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Right",
        "mac": "Command+Shift+Right"
      },
      "description": "合并多个窗口"
    },
    "create-group": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Up",
        "mac": "Command+Shift+Up"
      },
      "description": "根据配置创建分组"
    },
    "un-group": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Down",
        "mac": "Command+Shift+Down"
      },
      "description": "解散所有分组"
    }
  }
}