github.monkeypatch.copypaste

Fixes copy/cut annoyances in GitHub

github.monkeypatch.copypasteとは何ですか?

github.monkeypatch.copypasteはsteven.m.wexlerによって開発されたChromeの拡張機能で、その主な機能は「Fixes copy/cut annoyances in GitHub」です。

拡張機能のスクリーンショット

screenshot

github.monkeypatch.copypaste拡張機能のCRXファイルをダウンロード

github.monkeypatch.copypaste拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 github.monkeypatch.copypaste github.monkeypatch.copypaste
ID cnopbfgeakohnnpdlgkaobnmpcdfdlib
公式URL https://chrome.google.com/webstore/detail/githubmonkeypatchcopypast/cnopbfgeakohnnpdlgkaobnmpcdfdlib
説明 Fixes copy/cut annoyances in GitHub
ファイルサイズ 41.33 KB
インストール数 113
現在のバージョン 1.0.4
最終更新日 2015-05-30
公開日 2015-05-30
評価 4.00/5 合計 4 レビュー
開発者 steven.m.wexler
支払い方法 free
対応言語 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
    }
}