github.monkeypatch.copypaste

github.monkeypatch.copypaste

Fixes copy/cut annoyances in GitHub

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "github.monkeypatch.copypaste",
  "description": "Fixes copy/cut annoyances in GitHub",
  "version": "1.0.4",
  "permissions": [
    "clipboardWrite",
    "clipboardRead"
  ],
  "icons": {
    "128": "codeducky_partial_logo_128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "jquery-1.11.1.min.js",
        "GitHubSmartCopying.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery-1.11.1.min.js",
      "GitHubSmartCopyingBackground.js"
    ],
    "persistent": false
  }
}