github.monkeypatch.copypaste
Fixes copy/cut annoyances in GitHub
What is github.monkeypatch.copypaste?
github.monkeypatch.copypaste is a Chrome extension developed by steven.m.wexler, and its main feature is "Fixes copy/cut annoyances in GitHub".
Extension Screenshots
Download github.monkeypatch.copypaste Extension CRX File
Download github.monkeypatch.copypaste extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Cleans copying in GitHub by not including '+', '-' and other meta information from diffs in pull requests, commits, etc. GitHub: https://github.com/steaks/GitHubSmartCopyingChromeExtension Please file issues & enhancements on GitHub.
Extension Basic Information
Name | |
ID | cnopbfgeakohnnpdlgkaobnmpcdfdlib |
Official URL | https://chrome.google.com/webstore/detail/githubmonkeypatchcopypast/cnopbfgeakohnnpdlgkaobnmpcdfdlib |
Description | Fixes copy/cut annoyances in GitHub |
File Size | 41.33 KB |
Installation Count | 113 |
Current Version | 1.0.4 |
Last Updated | 2015-05-30 |
Publish Date | 2015-05-30 |
Rating | 4.00/5 Total 4 Ratings |
Developer | steven.m.wexler |
Payment Type | free |
Supported Languages | en |
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 } } |