Brevy

Redefining remote work for product teams

Brevy란 무엇입니까?

Brevy은(는) https://brevy.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redefining remote work for product teams"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Brevy builds tools for product teams to seamlessly communicate, collaborate, and iterate on their products in one organized and consolidated place. With Brevy you can record quick screen shares or capture issues directly on your website.                    

확장 프로그램 기본 정보

이름 Brevy Brevy
ID dmblmlkefiogokicnciehkoninfncgfa
공식 URL https://chromewebstore.google.com/detail/brevy/dmblmlkefiogokicnciehkoninfncgfa
설명 Redefining remote work for product teams
파일 크기 2.86 MB
설치 횟수 106
현재 버전 0.1.44
최근 업데이트 2022-07-18
출시 날짜 2021-06-09
평점 5.00/5 총 11 개의 평점
개발자 https://brevy.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.brevy.com
도움말 페이지 URL https://brevy.com/
개인정보 보호 정책 페이지 URL https://brevy.com/old/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Brevy",
    "short_name": "Brevy",
    "version": "0.1.44",
    "description": "Redefining remote work for product teams",
    "permissions": [
        "desktopCapture",
        "storage",
        "cookies",
        "activeTab",
        "webRequest",
        "webRequestBlocking",
        "",
        "*:\/\/localhost\/*",
        "*:\/\/*.brevy.com\/*"
    ],
    "browser_action": {
        "default_title": "Brevy"
    },
    "content_scripts": [
        {
            "js": [
                "frame.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "js": [
                "network-proxy.js"
            ],
            "run_at": "document_start",
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "css\/*.css",
        "images\/*.png",
        "fonts\/*.otf",
        "frame.css",
        "frame.html",
        "audio-processing\/*.js",
        "html\/media-devices.html",
        "media-devices.js",
        "capture-events.js",
        "capture-network-events.js",
        "network-proxy.js",
        "popup.js"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src * 'self' 'unsafe-inline';",
    "externally_connectable": {
        "matches": [
            "*:\/\/*.brevy.com\/*",
            "http:\/\/159.65.77.169:4000\/*",
            "http:\/\/localhost:4000\/*",
            "https:\/\/localhost:8080\/*",
            "https:\/\/localhost:8080\/",
            "*:\/\/localhost\/*"
        ]
    }
}