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 |
| 电子邮箱 | [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"
]
}
]
} | |