Fiverr Chats

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

O que é Fiverr Chats?

Fiverr Chats é uma extensão do Chrome desenvolvida por rromikas, e sua principal característica é "Extension created for Fiverr selers which allow to securely share client communication with your colleagues.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Fiverr Chats

Baixe arquivos de extensão Fiverr Chats no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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].                    

Informações Básicas da Extensão

Nome Fiverr Chats Fiverr Chats
ID cbhkjgjolleaohbpmkbinglohhgaclhc
URL Oficial https://chromewebstore.google.com/detail/fiverr-chats/cbhkjgjolleaohbpmkbinglohhgaclhc
Descrição Extension created for Fiverr selers which allow to securely share client communication with your colleagues.
Tamanho do Arquivo 132 KB
Contagem de Instalações 28
Versão Atual 1.0.0
Última Atualização 2023-01-18
Data de Publicação 2023-01-05
Desenvolvedor rromikas
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://fiverr-chats.vercel.app/
URL da Página de Ajuda https://fiverr-chats.vercel.app/
URL da Página de Política de Privacidade https://romikas.vercel.app/privacy-policy
Idiomas Suportados 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": []
        }
    ]
}