Salesforce.com Id Clipper

Helps you get Salesforce.com Ids from records and links to your clipboard
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Salesforce.com Id Clipper",
  "version": "3.2",
  "description": "Helps you get Salesforce.com Ids from records and links to your clipboard",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "clipper.png",
    "default_title": "Clip this Id!"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "clipboardWrite",
    "http://*/",
    "https://*/"
  ],
  "icons": {
    "128": "clipper_128.png"
  }
}