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文件
下载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.
扩展基本信息
名称 | |
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 } } |