github.monkeypatch.copypaste

Fixes copy/cut annoyances in GitHub

Wat is github.monkeypatch.copypaste?

github.monkeypatch.copypaste is een Chrome-extensie ontwikkeld door steven.m.wexler, en de belangrijkste functie is "Fixes copy/cut annoyances in GitHub".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie github.monkeypatch.copypaste

Download github.monkeypatch.copypaste-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam github.monkeypatch.copypaste github.monkeypatch.copypaste
ID cnopbfgeakohnnpdlgkaobnmpcdfdlib
Officiële URL https://chrome.google.com/webstore/detail/githubmonkeypatchcopypast/cnopbfgeakohnnpdlgkaobnmpcdfdlib
Beschrijving Fixes copy/cut annoyances in GitHub
Bestandsgrootte 41.33 KB
Aantal Installaties 113
Huidige Versie 1.0.4
Laatst Bijgewerkt 2015-05-30
Publicatiedatum 2015-05-30
Beoordeling 4.00/5 Totaal 4 Beoordelingen
Ontwikkelaar steven.m.wexler
Betalingswijze free
Ondersteunde Talen 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
    }
}