github.monkeypatch.copypaste
Fixes copy/cut annoyances in GitHub
Was ist github.monkeypatch.copypaste?
github.monkeypatch.copypaste ist eine Chrome-Erweiterung, die von steven.m.wexler entwickelt wurde, und ihr Hauptmerkmal ist "Fixes copy/cut annoyances in GitHub".
Erweiterungsscreenshots
github.monkeypatch.copypaste-Erweiterungs-CRX-Datei herunterladen
Laden Sie github.monkeypatch.copypaste-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cnopbfgeakohnnpdlgkaobnmpcdfdlib |
| Offizielle URL | https://chrome.google.com/webstore/detail/githubmonkeypatchcopypast/cnopbfgeakohnnpdlgkaobnmpcdfdlib |
| Beschreibung | Fixes copy/cut annoyances in GitHub |
| Dateigröße | 41.33 KB |
| Installationsanzahl | 113 |
| Aktuelle Version | 1.0.4 |
| Letztes Update | 2015-05-30 |
| Veröffentlichungsdatum | 2015-05-30 |
| Bewertung | 4.00/5 Insgesamt 4 Bewertungen |
| Entwickler | steven.m.wexler |
| Zahlungsart | free |
| Unterstützte Sprachen | 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
}
} | |