iTab - Awesome Tab Manager

iTab - Awesome Tab Manager

iTab is a simple and free tab manager for your browser that allows fast switching between tabs and windows. The shortcut Alt+Space opens a search bar within a tab and displays all tabs matching the search term.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "iTab - Awesome Tab Manager",
  "description": "A powerful productivity extension for your browser.",
  "version": "1.0.2",
  "browser_action": {
    "browser_style": false,
    "default_popup": "popup.html",
    "default_icon": "./assets/icon.png",
    "default_title": "iTab"
  },
  "icons": {
    "16": "./assets/icon16.png",
    "48": "./assets/icon48.png",
    "128": "./assets/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "itab": {
      "suggested_key": {
        "default": "Alt+Space",
        "mac": "Alt+Space"
      },
      "description": "Popup iTab Search"
    }
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "activeTab",
    "storage"
  ],
  "web_accessible_resources": [
    "toggle.html",
    "popup.html",
    "inject.js",
    "togglerm.js",
    "styles/index.css"
  ]
}