Github Issue Template
Backbone for structuring Github Issues
什么是Github Issue Template?
Github Issue Template是由Ovidiu Cherecheș开发的Chrome扩展程序,该扩展的主要功能是“Backbone for structuring Github Issues”。
下载Github Issue Template扩展crx文件
下载Github Issue Template扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | cmkibacnfglkpeejephdhdmeefhogdka |
| 官方URL | https://chrome.google.com/webstore/detail/github-issue-template/cmkibacnfglkpeejephdhdmeefhogdka |
| 简介 | Backbone for structuring Github Issues |
| 文件大小 | 57.85 KB |
| 安装次数 | 25 |
| 当前版本 | 0.1.2 |
| 更新时间 | 2014-05-28 |
| 上架时间 | 2014-05-28 |
| 评分 | 5.00/5 共5次评分 |
| 开发者 | Ovidiu Cherecheș |
| 付费类型 | free |
| 扩展官网 | https://github.com/skidding/github-issue-template |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github Issue Template",
"version": "0.1.2",
"manifest_version": 2,
"description": "Backbone for structuring Github Issues",
"icons": {
"16": "icon16.png",
"48": "icon48.png"
},
"permissions": [
"*:\/\/rawgit.com\/",
"tabs"
],
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*\/issues\/new"
],
"js": [
"script\/lib\/jquery.min.js",
"script\/lib\/jquery.cursor-position.js",
"script\/lib\/jquery.select-range.js",
"script\/new-issue-page.js"
]
}
],
"browser_action": {
"default_icon": {
"19": "icon19.png"
},
"default_title": "Create new Github Issue",
"default_popup": "popup.html"
},
"options_page": "options.html"
} | |