Tab Master Control

Tab Master Control

Replaces New Tab tabs with a tab manager that displays all tabs visually as a document and can be used to access, close, and filter tabs by category using user-editable regular expressions applied to their URLs. It also sorts all tabs by URL.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "name": "Tab Master Control",
  "version": "3.0.1resigned1",
  "developer": {
    "name": "Patrick Dark"
  },
  "description": "Replaces New Tab tabs with a tab manager and orders tabs by URL.",
  "background": {
    "scripts": [
      "background.es"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "tab.master.control.xhtml"
  },
  "icons": {
    "48": "icons/icon-48x48.png",
    "96": "icons/icon-96x96.png",
    "128": "icons/icon-128x128.png"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs"
  ]
}