Tile Tabs WE

Tile Tabs WE

Take tabs from parent windows and arrange them in layouts of tiled sub-windows, using the toolbar button, context menu or keyboard shortcuts. Makes it easy to browse, compare or monitor multiple pages. Synchronize scroll. Save and re-open layouts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Tile Tabs WE",
  "version": "15.5",
  "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"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "tiletabs-we@DW-dev",
      "strict_min_version": "53.0"
    }
  },
  "permissions": [
    "http://-tile-tabs-we-/*",
    "tabs",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "bookmarks",
    "contextMenus",
    "notifications",
    "storage"
  ],
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "16": "icon16.png"
    },
    "default_title": "Tile Tabs WE"
  },
  "background": {
    "scripts": [
      "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": [
    "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"
      }
    }
  }
}