Vercel Deploy
Vercel Deploy allows you to deploy any GitHub repo to Vercel in 1 click.
什么是Vercel Deploy?
Vercel Deploy是由hassan4709开发的Chrome扩展程序,该扩展的主要功能是“Vercel Deploy allows you to deploy any GitHub repo to Vercel in 1 click.”。
扩展截图
下载Vercel Deploy扩展crx文件
下载Vercel Deploy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Deploying web applications has never been easier with this chrome extension. After downloading it, simply navigate to any Github web repo, click the chrome extension, and it will log into your Vercel account and deploy the repo for you. This extension will also detect environment variables from repos and work for deploying subrepos!
扩展基本信息
名称 | |
ID | nkignhibadhmcbiiilleogljodcaonjk |
官方URL | https://chromewebstore.google.com/detail/vercel-deploy/nkignhibadhmcbiiilleogljodcaonjk |
简介 | Vercel Deploy allows you to deploy any GitHub repo to Vercel in 1 click. |
文件大小 | 7.9 KB |
安装次数 | 7,380 |
当前版本 | 2.0.0 |
更新时间 | 2023-02-19 |
上架时间 | 2022-03-14 |
评分 | 4.73/5 共11次评分 |
开发者 | hassan4709 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://twitter.com/Nutlope/status/1502360893144850434 |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Vercel Deploy", "description": "Vercel Deploy allows you to deploy any GitHub repo to Vercel in 1 click.", "version": "2.0.0", "permissions": [ "tabs" ], "action": { "default_title": "Deploy to Vercel", "default_icon": "vercel.png" }, "background": { "matches": [ "https:\/\/github.com\/*" ], "service_worker": "background.js" } } |