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ファイルをダウンロード

Vercel拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            ]
        }
    ]
}