Chrommander - tab navigator

Chrommander - tab navigator

Use Chrommander's search box to quickly jump to any opened tab or bookmark.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chrommander - tab navigator",
  "short_name": "Chrommander",
  "version": "0.0.2",
  "description": "Use Chrommander's search box to quickly jump to any opened tab or bookmark.",
  "author": "@simon0191",
  "browser_action": {
    "default_popup": "popup/index.html"
  },
  "background": {
    "scripts": [
      "background/bundle.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "foreground/bundle.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "bookmarks",
    "chrome://favicon/"
  ],
  "commands": {
    "_execute_browser_action": {
      "description": "Open Chrommander",
      "suggested_key": {
        "windows": "Ctrl+Shift+P",
        "mac": "MacCtrl+P",
        "chromeos": "Ctrl+Shift+P",
        "linux": "Ctrl+Shift+P"
      }
    }
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}