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.”。

擴展截圖

screenshot

下載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!                    

擴展基本資訊

名稱 Vercel Deploy Vercel Deploy
ID nkignhibadhmcbiiilleogljodcaonjk
官方網址 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"
    }
}