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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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 } } |