Sitecore keyboard shortcuts

Sitecore keyboard shortcuts

Speed up your Sitecore experience by creating hot key combinations to execute common actions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sitecore keyboard shortcuts",
  "short_name": "Sitecore keyboard shortcuts",
  "description": "Speed up your Sitecore experience by creating hot key combinations to execute common actions.",
  "version": "1.0.1.0",
  "icons": {
    "16": "images/icons/icon-16.png",
    "48": "images/icons/icon-48.png",
    "128": "images/icons/icon-128.png"
  },
  "background": {
    "persistent": false,
    "page": "views/background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/sitecore*"
      ],
      "js": [
        "scripts/inject.js"
      ],
      "runat_at": "document_idle",
      "all_frames": true,
      "css": [
        "styles/main.css"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "19": "images/icons/icon-19.png"
    },
    "default_title": "Sitecore keyboard shortcuts"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "options_page": "views/options.html",
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "tabs",
    "notifications"
  ]
}