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 |
官方網址 | 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 } } |