OctoDraft
Save drafts of issues in github.
Cos'è OctoDraft?
OctoDraft è un'estensione di Chrome sviluppata da Dan Wild, e la sua funzione principale è "Save drafts of issues in github.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione OctoDraft
Scarica i file di estensione OctoDraft in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Adds a button to the issues section of github that allows to save a draft of your issue, in case you'd want to complete it later. When one reports an issue, an example of code is needed. Sometimes making a minimal, reproducible example just takes time, and you don't want to get distracted. It looks something like this: https://github.com/wildeyes/octodraft
Informazioni di Base sull'Estensione
Nome | |
ID | mjfaidoickdplapkfhajfkehpepmccfg |
URL Ufficiale | https://chrome.google.com/webstore/detail/octodraft/mjfaidoickdplapkfhajfkehpepmccfg |
Descrizione | Save drafts of issues in github. |
Dimensione del File | 58.54 KB |
Conteggio Installazioni | 109 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2018-10-04 |
Data di Pubblicazione | 2018-10-04 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Dan Wild |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/wildeyes/octodraft |
URL della Pagina di Aiuto | https://github.com/wildeyes/octodraft |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OctoDraft", "version": "1.0.1", "manifest_version": 2, "description": "Save drafts of issues in github.", "homepage_url": "https:\/\/github.com\/wildeyes\/octodraft", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "permissions": [ "https:\/\/github.com\/*", "webNavigation" ], "background": { "scripts": [ "src\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |