TabTree

TabTree

Sort your tabs and show them as a tree.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TabTree",
  "description": "Sort your tabs and show them as a tree.",
  "version": "1.2",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "tree-icon-48.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs"
  ],
  "icons": {
    "16": "tree-icon-16.png",
    "32": "tree-icon-32.png",
    "48": "tree-icon-48.png",
    "128": "tree-icon-128.png"
  }
}