Quick Commands

Quick Commands

Provides a fast way to search and change between open Tabs or open tabs from History and Bookmarks. Inspired by Vivaldi's Quick Commands (https://help.vivaldi.com/article/quick-commands/) Use the shortcut (Alt+Shift+R) to open the menu window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Quick Commands",
  "version": "1.5.2",
  "description": "An add-on that tries to mimic Vivaldi's Quick commands window. Open with Alt-Shift-R",
  "icons": {
    "48": "icons/icon.svg",
    "96": "icons/icon.svg"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{e6ad355f-be44-4c03-9d49-a39f84ac702a}",
      "strict_min_version": "63.0"
    }
  },
  "content_scripts": [],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/icon.svg",
      "38": "icons/icon.svg"
    },
    "default_title": "Quick Commands"
  },
  "permissions": [
    "bookmarks",
    "storage",
    "tabs",
    "history",
    "search"
  ],
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "commands": {
    "quick-commands": {
      "suggested_key": {
        "default": "Alt+Shift+R"
      },
      "description": "Open the quick-commands window"
    }
  }
}