github.monkeypatch.copypaste
Fixes copy/cut annoyances in GitHub
github.monkeypatch.copypaste là gì?
github.monkeypatch.copypaste là một tiện ích mở rộng Chrome được phát triển bởi steven.m.wexler, và tính năng chính của nó là "Fixes copy/cut annoyances in GitHub".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng github.monkeypatch.copypaste
Tải xuống các tệp mở rộng github.monkeypatch.copypaste dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | cnopbfgeakohnnpdlgkaobnmpcdfdlib |
URL Chính Thức | https://chrome.google.com/webstore/detail/githubmonkeypatchcopypast/cnopbfgeakohnnpdlgkaobnmpcdfdlib |
Mô tả | Fixes copy/cut annoyances in GitHub |
Kích Thước Tệp | 41.33 KB |
Số Lần Cài Đặt | 113 |
Phiên Bản Hiện Tại | 1.0.4 |
Cập Nhật Lần Cuối | 2015-05-30 |
Ngày Phát Hành | 2015-05-30 |
Đánh Giá | 4.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | steven.m.wexler |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |