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 |
| 官方網址 | 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\/*"
]
}
]
} | |