Fiverr Chats

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

Cos'è Fiverr Chats?

Fiverr Chats è un'estensione di Chrome sviluppata da rromikas, e la sua funzione principale è "Extension created for Fiverr selers which allow to securely share client communication with your colleagues.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Fiverr Chats

Scarica i file di estensione Fiverr Chats in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Fiverr Chats Fiverr Chats
ID cbhkjgjolleaohbpmkbinglohhgaclhc
URL Ufficiale https://chromewebstore.google.com/detail/fiverr-chats/cbhkjgjolleaohbpmkbinglohhgaclhc
Descrizione Extension created for Fiverr selers which allow to securely share client communication with your colleagues.
Dimensione del File 132 KB
Conteggio Installazioni 28
Versione Corrente 1.0.0
Ultimo Aggiornamento 2023-01-18
Data di Pubblicazione 2023-01-05
Sviluppatore rromikas
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://fiverr-chats.vercel.app/
URL della Pagina di Aiuto https://fiverr-chats.vercel.app/
URL della Pagina della Politica sulla Privacy https://romikas.vercel.app/privacy-policy
Lingue Supportate 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": []
        }
    ]
}