Fiverr Chats

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

Vad är Fiverr Chats?

Fiverr Chats är en Chrome-tillägg utvecklad av rromikas, och dess huvudfunktion är "Extension created for Fiverr selers which allow to securely share client communication with your colleagues.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Fiverr Chats-förlängningens CRX-fil

Ladda ner Fiverr Chats-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Fiverr Chats Fiverr Chats
ID cbhkjgjolleaohbpmkbinglohhgaclhc
Officiell webbadress https://chromewebstore.google.com/detail/fiverr-chats/cbhkjgjolleaohbpmkbinglohhgaclhc
Beskrivning Extension created for Fiverr selers which allow to securely share client communication with your colleagues.
Filstorlek 132 KB
Antal Installationer 28
Aktuell Version 1.0.0
Senast Uppdaterad 2023-01-18
Publiceringsdatum 2023-01-05
Utvecklare rromikas
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://fiverr-chats.vercel.app/
Hjälpsida URL https://fiverr-chats.vercel.app/
URL till Sekretesspolicy Sidan https://romikas.vercel.app/privacy-policy
Stödda Språk 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": []
        }
    ]
}