SFDC Shortcuts

SFDC Shortcuts

Collections of useful shortcuts and utilities for Salesforce Developers and Admins.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Basant Kumar Verma",
  "short_name": "SFDC Shortcuts",
  "name": "SFDC Shortcuts",
  "version": "2.134",
  "description": "Collections of useful shortcuts and utilities for Salesforce Developers and Admins.",
  "incognito": "split",
  "permissions": [
    "notifications",
    "storage",
    "https://*.force.com/",
    "https://*.salesforce.com/",
    "https://*.visualforce.com/"
  ],
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.force.com/*",
        "https://*.salesforce.com/*",
        "https://*.visualforce.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "ShortKey_1": {
      "suggested_key": {
        "default": "Alt+Shift+S"
      },
      "description": "Shortkey 1"
    },
    "ShortKey_2": {
      "suggested_key": {
        "default": "Alt+Shift+Z"
      },
      "description": "Shortkey 2"
    },
    "ShortKey_3": {
      "suggested_key": {
        "default": "Alt+Shift+X"
      },
      "description": "Shortkey 3"
    },
    "ShortKey_4": {
      "suggested_key": {
        "default": "Alt+Shift+O"
      },
      "description": "Shortkey 4"
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  }
}