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 с друзьями, чтобы легко установить расширения 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
    }
}