Vercel

Easily add screenshots to Comments in your Preview URLs to provide better feedback for your team.

Co to jest Vercel?

Vercel to rozszerzenie Chrome opracowane przez Vercel, a jego główną funkcją jest „Easily add screenshots to Comments in your Preview URLs to provide better feedback for your team.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Vercel

Pobierz pliki rozszerzeń Vercel w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Installing this extension unlocks an easy-to-use feature for taking screenshots when commenting on your Vercel deployments.                    

Podstawowe informacje o rozszerzeniu

Nazwa Vercel Vercel
ID lahhiofdgnbcgmemekkmjnpifojdaelb
Oficjalny URL https://chromewebstore.google.com/detail/vercel/lahhiofdgnbcgmemekkmjnpifojdaelb
Opis Easily add screenshots to Comments in your Preview URLs to provide better feedback for your team.
Rozmiar pliku 18.48 KB
Liczba instalacji 8,085
Aktualna Wersja 1.0.6
Ostatnia Aktualizacja 2024-02-22
Data Publikacji 2023-07-07
Ocena 4.50/5 Łącznie 10 Oceny
Deweloper Vercel
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://vercel.com
Adres URL Strony Pomocy https://vercel.com/support
Adres URL Strony Polityki Prywatności https://vercel.com/legal/privacy-policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Vercel",
    "version": "1.0.6",
    "description": "Easily add screenshots to Comments in your Preview URLs to provide better feedback for your team.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Vercel"
    },
    "permissions": [
        "alarms",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:3000\/_next-live\/feedback\/feedback.html",
                "https:\/\/vercel.live\/_next-live\/feedback\/feedback.html",
                "https:\/\/canary-vercel.live\/_next-live\/feedback\/feedback.html",
                "https:\/\/*.vercel.sh\/_next-live\/feedback\/feedback.html"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "toolbarInjector.js"
            ]
        }
    ]
}