OctoDraft
Save drafts of issues in github.
Qu'est-ce que OctoDraft ?
OctoDraft est une extension Chrome développée par Dan Wild, et sa fonction principale est "Save drafts of issues in github.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension OctoDraft
Téléchargez les fichiers d'extension OctoDraft au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | mjfaidoickdplapkfhajfkehpepmccfg |
URL Officiel | https://chrome.google.com/webstore/detail/octodraft/mjfaidoickdplapkfhajfkehpepmccfg |
Description | Save drafts of issues in github. |
Taille du Fichier | 58.54 KB |
Nombre d'Installations | 109 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2018-10-04 |
Date de Publication | 2018-10-04 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Dan Wild |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/wildeyes/octodraft |
URL de la Page d'Aide | https://github.com/wildeyes/octodraft |
Langues Prises en Charge | 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" ] } ] } |