github.monkeypatch.copypaste
Fixes copy/cut annoyances in GitHub
Co to jest github.monkeypatch.copypaste?
github.monkeypatch.copypaste to rozszerzenie Chrome opracowane przez steven.m.wexler, a jego główną funkcją jest „Fixes copy/cut annoyances in GitHub”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia github.monkeypatch.copypaste
Pobierz pliki rozszerzeń github.monkeypatch.copypaste w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | cnopbfgeakohnnpdlgkaobnmpcdfdlib |
Oficjalny URL | https://chrome.google.com/webstore/detail/githubmonkeypatchcopypast/cnopbfgeakohnnpdlgkaobnmpcdfdlib |
Opis | Fixes copy/cut annoyances in GitHub |
Rozmiar pliku | 41.33 KB |
Liczba instalacji | 113 |
Aktualna Wersja | 1.0.4 |
Ostatnia Aktualizacja | 2015-05-30 |
Data Publikacji | 2015-05-30 |
Ocena | 4.00/5 Łącznie 4 Oceny |
Deweloper | steven.m.wexler |
Typ Płatności | free |
Obsługiwane Języki | 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 } } |