Simple Paste Extension

Allows you to copy and paste customizable phrases!
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": "Simple Paste Extension",
  "version": "2.2.1",
  "description": "Allows you to copy and paste customizable phrases!",
  "browser_action": {
    "default_icon": "SimplePaste128.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "icons": {
    "16": "SimplePaste16.png",
    "32": "SimplePaste32.png",
    "48": "SimplePaste48.png",
    "128": "SimplePaste128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl + M",
        "mac": "Ctrl + M",
        "chromeos": "Ctrl + M",
        "linux": "Ctrl + M"
      }
    }
  }
}