Brevy

Redefining remote work for product teams

什麼是Brevy?

Brevy是由https://brevy.com開發的Chrome擴展程式,該擴展的主要功能是“Redefining remote work for product teams”。

擴展截圖

screenshot
screenshot
screenshot

下載Brevy擴展crx文件

下載Brevy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
        ]
    }
}