DCO GitHub UI
DCO signoff for GitHub UI
Vad är DCO GitHub UI?
DCO GitHub UI är en Chrome-tillägg utvecklad av Scott Rigby, och dess huvudfunktion är "DCO signoff for GitHub UI".
Tilläggsskärmbilder
Ladda ner DCO GitHub UI-förlängningens CRX-fil
Ladda ner DCO GitHub UI-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This Chrome extension adds DCO Signed-off-by line to commits made with the GitHub browser UI. Grundläggande Information om Tillägg
| Namn | |
| ID | onhgmjhnaeipfgacbglaphlmllkpoijo |
| Officiell webbadress | https://chromewebstore.google.com/detail/dco-github-ui/onhgmjhnaeipfgacbglaphlmllkpoijo |
| Beskrivning | DCO signoff for GitHub UI |
| Filstorlek | 20.58 KB |
| Antal Installationer | 203 |
| Aktuell Version | 1.1.0 |
| Senast Uppdaterad | 2020-08-16 |
| Publiceringsdatum | 2018-09-20 |
| Betyg | 4.00/5 Totalt 1 Betyg |
| Utvecklare | Scott Rigby |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/scottrigby/dco-gh-ui |
| Hjälpsida URL | https://github.com/scottrigby/dco-gh-ui/blob/master/README.md |
| Stödda Språk | 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\/*"
]
}
]
} | |