Tile Tabs WE

Tile Tabs WE

Take tabs from parent windows and arrange them in layouts of tiled sub-windows.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tile Tabs WE",
  "version": "31.3",
  "description": "Take tabs from parent windows and arrange them in layouts of tiled sub-windows.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128-96.png"
  },
  "minimum_chrome_version": "88",
  "permissions": [
    "tabs",
    "webNavigation",
    "bookmarks",
    "contextMenus",
    "notifications",
    "storage"
  ],
  "host_permissions": [],
  "action": {
    "default_icon": {
      "16": "icon16.png"
    },
    "default_title": "Tile Tabs WE"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "quickmenu.css"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "quickmenu.html"
      ]
    }
  ],
  "commands": {
    "newcloselayout": {
      "description": "New/Close Layout",
      "suggested_key": {
        "default": "Alt+Shift+Up",
        "mac": "MacCtrl+Shift+Up"
      }
    },
    "hideshowlayout": {
      "description": "Hide/Show Layout",
      "suggested_key": {
        "default": "Alt+Shift+Down",
        "mac": "MacCtrl+Shift+Down"
      }
    },
    "refreshlayout": {
      "description": "Refresh Layout",
      "suggested_key": {
        "default": "Alt+Shift+Left",
        "mac": "MacCtrl+Shift+Left"
      }
    },
    "toggletoolbars": {
      "description": "Toggle Toolbars",
      "suggested_key": {
        "default": "Alt+Shift+Right",
        "mac": "MacCtrl+Shift+Right"
      }
    }
  }
}