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"입니다.
확장 프로그램 스크린샷
github.monkeypatch.copypaste 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | |
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 } } |