Github to Stackblitz
Add a button in github that open the current project into Stackblitz
什么是Github to Stackblitz?
Github to Stackblitz是由alain21218开发的Chrome扩展程序,该扩展的主要功能是“Add a button in github that open the current project into Stackblitz”。
扩展截图
下载Github to Stackblitz扩展crx文件
下载Github to Stackblitz扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | jogplfjfklbkeihnmnfkccbgceaohlhm |
| 官方URL | https://chrome.google.com/webstore/detail/github-to-stackblitz/jogplfjfklbkeihnmnfkccbgceaohlhm |
| 简介 | Add a button in github that open the current project into Stackblitz |
| 文件大小 | 18.76 KB |
| 安装次数 | 190 |
| 当前版本 | 1.0 |
| 更新时间 | 2018-06-17 |
| 上架时间 | 2018-06-17 |
| 评分 | 4.00/5 共2次评分 |
| 开发者 | alain21218 |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Github to Stackblitz",
"version": "1.0",
"description": "Add a button in github that open the current project into Stackblitz",
"icons": {
"48": "logo.png"
},
"web_accessible_resources": [
"logo.png"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.github.com\/*"
],
"js": [
"button.js"
]
}
]
} | |