CCP Command Palette

CCP Command Palette

Control your browser quickier than ever with only your keyboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CCP Command Palette",
  "short_name": "CCP",
  "version": "0.2",
  "description": "Control your browser quickier than ever with only your keyboard",
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "author": "David Samuelson",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+P",
        "mac": "MacCtrl+Shift+P"
      }
    }
  },
  "permissions": [
    "tabs",
    "browsingData",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "CCP",
    "default_popup": "popup.html"
  }
}