DCO GitHub UI
DCO signoff for GitHub UI
什么是DCO GitHub UI?
DCO GitHub UI是由Scott Rigby开发的Chrome扩展程序,该扩展的主要功能是“DCO signoff for GitHub UI”。
扩展截图
下载DCO GitHub UI扩展crx文件
下载DCO GitHub UI扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This Chrome extension adds DCO Signed-off-by line to commits made with the GitHub browser UI.
扩展基本信息
名称 | DCO GitHub UI |
ID | onhgmjhnaeipfgacbglaphlmllkpoijo |
官方URL | https://chromewebstore.google.com/detail/dco-github-ui/onhgmjhnaeipfgacbglaphlmllkpoijo |
简介 | DCO signoff for GitHub UI |
文件大小 | 20.58 KB |
安装次数 | 203 |
当前版本 | 1.1.0 |
更新时间 | 2020-08-16 |
上架时间 | 2018-09-20 |
评分 | 4.00/5 共1次评分 |
开发者 | Scott Rigby |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/scottrigby/dco-gh-ui |
帮助页面URL | https://github.com/scottrigby/dco-gh-ui/blob/master/README.md |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DCO GitHub UI", "version": "1.1.0", "description": "DCO signoff for GitHub UI", "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage" ], "icons": { "16": "images\/dco-gh-ui-16.png", "32": "images\/dco-gh-ui-32.png", "48": "images\/dco-gh-ui-48.png", "96": "images\/dco-gh-ui-96.png", "128": "images\/dco-gh-ui-128.png" }, "content_scripts": [ { "css": [ "styles.css" ], "js": [ "content.js" ], "matches": [ "https:\/\/github.com\/*" ] } ] } |