List All Tabs

List All Tabs

show a list of all open tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "List All Tabs",
  "version": "4.0.2",
  "description": "show a list of all open tabs",
  "short_name": "List All Tabs",
  "author": "Lior Shtivelman",
  "permissions": [
    "tabs",
    "storage",
    "tabGroups"
  ],
  "options_page": "options.html",
  "action": {
    "default_icon": "images/dark_version.png",
    "default_popup": "index.html"
  },
  "icons": {
    "128": "icon_128.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+U",
        "linux": "Ctrl+Shift+U",
        "windows": "Alt+Shift+U",
        "mac": "Ctrl+Shift+U"
      }
    }
  }
}