github.monkeypatch.copypaste

Fixes copy/cut annoyances in GitHub

Apa itu github.monkeypatch.copypaste?

github.monkeypatch.copypaste adalah ekstensi Chrome yang dikembangkan oleh steven.m.wexler, dan fitur utamanya adalah "Fixes copy/cut annoyances in GitHub".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi github.monkeypatch.copypaste

Unduh file ekstensi github.monkeypatch.copypaste dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama github.monkeypatch.copypaste github.monkeypatch.copypaste
ID cnopbfgeakohnnpdlgkaobnmpcdfdlib
URL Resmi https://chrome.google.com/webstore/detail/githubmonkeypatchcopypast/cnopbfgeakohnnpdlgkaobnmpcdfdlib
Deskripsi Fixes copy/cut annoyances in GitHub
Ukuran File 41.33 KB
Jumlah Instalasi 113
Versi Saat Ini 1.0.4
Terakhir Diperbarui 2015-05-30
Tanggal Publikasi 2015-05-30
Penilaian 4.00/5 Total 4 Penilaian
Pengembang steven.m.wexler
Tipe Pembayaran free
Bahasa yang Didukung 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
    }
}