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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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\/*"
]
}
]
} | |