github.monkeypatch.copypaste

Fixes copy/cut annoyances in GitHub

Qu'est-ce que github.monkeypatch.copypaste ?

github.monkeypatch.copypaste est une extension Chrome développée par steven.m.wexler, et sa fonction principale est "Fixes copy/cut annoyances in GitHub".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension github.monkeypatch.copypaste

Téléchargez les fichiers d'extension github.monkeypatch.copypaste au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom github.monkeypatch.copypaste github.monkeypatch.copypaste
ID cnopbfgeakohnnpdlgkaobnmpcdfdlib
URL Officiel https://chrome.google.com/webstore/detail/githubmonkeypatchcopypast/cnopbfgeakohnnpdlgkaobnmpcdfdlib
Description Fixes copy/cut annoyances in GitHub
Taille du Fichier 41.33 KB
Nombre d'Installations 113
Version Actuelle 1.0.4
Dernière Mise à Jour 2015-05-30
Date de Publication 2015-05-30
Évaluation 4.00/5 Total 4 Évaluations
Développeur steven.m.wexler
Type de Paiement free
Langues Prises en Charge 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
    }
}