Vercel

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

Vercel란 무엇입니까?

Vercel은(는) Vercel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily add screenshots to Comments in your Preview URLs to provide better feedback for your team."입니다.

확장 프로그램 스크린샷

screenshot

Vercel 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 Vercel Vercel
ID lahhiofdgnbcgmemekkmjnpifojdaelb
공식 URL https://chromewebstore.google.com/detail/vercel/lahhiofdgnbcgmemekkmjnpifojdaelb
설명 Easily add screenshots to Comments in your Preview URLs to provide better feedback for your team.
파일 크기 18.48 KB
설치 횟수 8,085
현재 버전 1.0.6
최근 업데이트 2024-02-22
출시 날짜 2023-07-07
평점 4.50/5 총 10 개의 평점
개발자 Vercel
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://vercel.com
도움말 페이지 URL https://vercel.com/support
개인정보 보호 정책 페이지 URL https://vercel.com/legal/privacy-policy
지원되는 언어 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"
            ]
        }
    ]
}