DCO GitHub UI
DCO signoff for GitHub UI
What is DCO GitHub UI?
DCO GitHub UI is a Chrome extension developed by Scott Rigby, and its main feature is "DCO signoff for GitHub UI".
Extension Screenshots
Download DCO GitHub UI Extension CRX File
Download DCO GitHub UI extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This Chrome extension adds DCO Signed-off-by line to commits made with the GitHub browser UI.
Extension Basic Information
Name | DCO GitHub UI |
ID | onhgmjhnaeipfgacbglaphlmllkpoijo |
Official URL | https://chromewebstore.google.com/detail/dco-github-ui/onhgmjhnaeipfgacbglaphlmllkpoijo |
Description | DCO signoff for GitHub UI |
File Size | 20.58 KB |
Installation Count | 203 |
Current Version | 1.1.0 |
Last Updated | 2020-08-16 |
Publish Date | 2018-09-20 |
Rating | 4.00/5 Total 1 Ratings |
Developer | Scott Rigby |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/scottrigby/dco-gh-ui |
Help Page URL | https://github.com/scottrigby/dco-gh-ui/blob/master/README.md |
Supported Languages | 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\/*" ] } ] } |