OctoDraft
Save drafts of issues in github.
Apa itu OctoDraft?
OctoDraft adalah ekstensi Chrome yang dikembangkan oleh Dan Wild, dan fitur utamanya adalah "Save drafts of issues in github.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi OctoDraft
Unduh file ekstensi OctoDraft dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | mjfaidoickdplapkfhajfkehpepmccfg |
URL Resmi | https://chrome.google.com/webstore/detail/octodraft/mjfaidoickdplapkfhajfkehpepmccfg |
Deskripsi | Save drafts of issues in github. |
Ukuran File | 58.54 KB |
Jumlah Instalasi | 109 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2018-10-04 |
Tanggal Publikasi | 2018-10-04 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | Dan Wild |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/wildeyes/octodraft |
URL Halaman Bantuan | https://github.com/wildeyes/octodraft |
Bahasa yang Didukung | 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" ] } ] } |