Vercel Deploy
Vercel Deploy allows you to deploy any GitHub repo to Vercel in 1 click.
Vad är Vercel Deploy?
Vercel Deploy är en Chrome-tillägg utvecklad av hassan4709, och dess huvudfunktion är "Vercel Deploy allows you to deploy any GitHub repo to Vercel in 1 click.".
Tilläggsskärmbilder
Ladda ner Vercel Deploy-förlängningens CRX-fil
Ladda ner Vercel Deploy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | |
ID | nkignhibadhmcbiiilleogljodcaonjk |
Officiell webbadress | https://chromewebstore.google.com/detail/vercel-deploy/nkignhibadhmcbiiilleogljodcaonjk |
Beskrivning | Vercel Deploy allows you to deploy any GitHub repo to Vercel in 1 click. |
Filstorlek | 7.9 KB |
Antal Installationer | 7,380 |
Aktuell Version | 2.0.0 |
Senast Uppdaterad | 2023-02-19 |
Publiceringsdatum | 2022-03-14 |
Betyg | 4.73/5 Totalt 11 Betyg |
Utvecklare | hassan4709 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://twitter.com/Nutlope/status/1502360893144850434 |
Stödda Språk | 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" } } |