OctoDraft
Save drafts of issues in github.
OctoDraftとは何ですか?
OctoDraftはDan Wildによって開発されたChromeの拡張機能で、その主な機能は「Save drafts of issues in github.」です。
拡張機能のスクリーンショット
OctoDraft拡張機能のCRXファイルをダウンロード
OctoDraft拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | |
ID | mjfaidoickdplapkfhajfkehpepmccfg |
公式URL | https://chrome.google.com/webstore/detail/octodraft/mjfaidoickdplapkfhajfkehpepmccfg |
説明 | Save drafts of issues in github. |
ファイルサイズ | 58.54 KB |
インストール数 | 109 |
現在のバージョン | 1.0.1 |
最終更新日 | 2018-10-04 |
公開日 | 2018-10-04 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Dan Wild |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/wildeyes/octodraft |
ヘルプページのURL | https://github.com/wildeyes/octodraft |
対応言語 | 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" ] } ] } |