Vercel

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

Vercel là gì?

Vercel là một tiện ích mở rộng Chrome được phát triển bởi Vercel, và tính năng chính của nó là "Easily add screenshots to Comments in your Preview URLs to provide better feedback for your team.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Vercel

Tải xuống các tệp mở rộng Vercel dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Vercel Vercel
ID lahhiofdgnbcgmemekkmjnpifojdaelb
URL Chính Thức https://chromewebstore.google.com/detail/vercel/lahhiofdgnbcgmemekkmjnpifojdaelb
Mô tả Easily add screenshots to Comments in your Preview URLs to provide better feedback for your team.
Kích Thước Tệp 18.48 KB
Số Lần Cài Đặt 8,085
Phiên Bản Hiện Tại 1.0.6
Cập Nhật Lần Cuối 2024-02-22
Ngày Phát Hành 2023-07-07
Đánh Giá 4.50/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Vercel
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://vercel.com
URL Trang Trợ Giúp https://vercel.com/support
URL Trang Chính Sách Bảo Mật https://vercel.com/legal/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}