Fiverr Chats

Extension created for Fiverr selers which allow to securely share client communication with your colleagues.

什麼是Fiverr Chats?

Fiverr Chats是由rromikas開發的Chrome擴展程式,該擴展的主要功能是“Extension created for Fiverr selers which allow to securely share client communication with your colleagues.”。

擴展截圖

screenshot
screenshot

下載Fiverr Chats擴展crx文件

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

擴展使用說明

                        Once enabled on Fiverr inbox page, it streams chat to external room where other persons can help you chat with your clients. It can help to increase your response rate, extend client base and scale your freelancing career.

Before you start, create an account in https://fiverr-chats.vercel.app/ and create your first room. That room can be selected with extension in Fiverr inbox page. By default rooms are empty, so you need to use extension to add clients to rooms. Tab where extension is enabled streams chat to a selected room, so don't close it. If you encounter any problem, send email at [email protected].                    

擴展基本資訊

名稱 Fiverr Chats Fiverr Chats
ID cbhkjgjolleaohbpmkbinglohhgaclhc
官方網址 https://chromewebstore.google.com/detail/fiverr-chats/cbhkjgjolleaohbpmkbinglohhgaclhc
簡介 Extension created for Fiverr selers which allow to securely share client communication with your colleagues.
檔案大小 132 KB
安裝次數 28
目前版本 1.0.0
更新時間 2023-01-18
上架時間 2023-01-05
開發者 rromikas
電子郵箱 [email protected]
付費類型 free
擴展官網 https://fiverr-chats.vercel.app/
說明頁面URL https://fiverr-chats.vercel.app/
隱私政策頁面URL https://romikas.vercel.app/privacy-policy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Extension created for Fiverr selers which allow to securely share client communication with your colleagues.",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "Fiverr Chats",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_icon": "icon-32.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.fiverr.com\/inbox",
                "https:\/\/www.fiverr.com\/inbox\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}