github.monkeypatch.copypaste

Fixes copy/cut annoyances in GitHub

ما هو github.monkeypatch.copypaste؟

github.monkeypatch.copypaste هو إضافة Chrome تم تطويرها بواسطة steven.m.wexler، والميزة الرئيسية لها هي "Fixes copy/cut annoyances in GitHub".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة github.monkeypatch.copypaste

قم بتنزيل ملفات الامتداد github.monkeypatch.copypaste بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
    }
}