Salesforce Id CopyPasteGo

Salesforce Id CopyPasteGo

Copy the current Salesforce record's ID to the clipboard, or paste your way to the record's page from where you are!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Salesforce Id CopyPasteGo",
  "version": "1.4.10resigned1",
  "description": "Copy the current Salesforce record's ID to the clipboard, or paste your way to the record's page from where you are!",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "images/sf-copypaste128.png",
    "default_title": "Salesforce ID CopyPasteGo"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "clipboardWrite",
    "clipboardRead",
    "https://*.force.com/*",
    "https://*.salesforce.com/*",
    "https://*.cloudforce.com/*"
  ],
  "icons": {
    "16": "images/sf-copypaste16.png",
    "48": "images/sf-copypaste48.png",
    "128": "images/sf-copypaste128.png"
  },
  "commands": {
    "copyRecordId": {
      "description": "Copy the record ID",
      "suggested_key": {
        "default": "Ctrl+Alt+C"
      }
    },
    "copyCleanUrl": {
      "description": "Copy a clean URL",
      "suggested_key": {
        "default": "Alt+Shift+C"
      }
    },
    "pasteRecordId": {
      "description": "Paste the record ID",
      "suggested_key": {
        "default": "Ctrl+Alt+V"
      }
    },
    "pasteRecordIdToNewTab": {
      "description": "Paste the record ID to a new Tab",
      "suggested_key": {
        "default": "Ctrl+Alt+B"
      }
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{af04b5c6-8016-4b76-bb2e-7c086f5037a2}"
    }
  }
}