Browser Commands

Browser Commands

Manage your browser using word commands. Save time and be more productive on your browser time by using only commands!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Browser Commands",
  "description": "Manage your browser using word commands. Save time and be more productive on your browser time by using only commands!",
  "version": "1.4",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "activeTab",
    "bookmarks"
  ],
  "options_page": "options/index.html",
  "background": {
    "service_worker": "dist/background.js",
    "type": "module"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Comma",
        "mac": "Command+Comma"
      }
    }
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/icon16.png",
      "32": "/images/icon32.png",
      "48": "/images/icon48.png",
      "128": "/images/icon128.png"
    }
  },
  "icons": {
    "16": "/images/icon16.png",
    "32": "/images/icon32.png",
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  }
}