Aero Tab

Aero Tab

Chrome extension that groups tabs together by domain

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Aero Tab",
  "description": "Chrome extension that groups tabs together by domain",
  "version": "1.1",
  "icons": {
    "16": "icons/logo16.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  },
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "commands": {
    "toggle_dialog": {
      "suggested_key": {
        "default": "Ctrl+Shift+Q",
        "mac": "Command+Shift+Q"
      },
      "description": "Toggles the tab grouping dialog"
    }
  },
  "background": {
    "scripts": [
      "javascripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "javascripts/lib/jquery-1.10.2.min.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}