Fiverr Chats

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

What is Fiverr Chats?

Fiverr Chats is a Chrome extension developed by rromikas, and its main feature is "Extension created for Fiverr selers which allow to securely share client communication with your colleagues.".

Extension Screenshots

screenshot
screenshot

Download Fiverr Chats Extension CRX File

Download Fiverr Chats extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Fiverr Chats Fiverr Chats
ID cbhkjgjolleaohbpmkbinglohhgaclhc
Official URL https://chromewebstore.google.com/detail/fiverr-chats/cbhkjgjolleaohbpmkbinglohhgaclhc
Description Extension created for Fiverr selers which allow to securely share client communication with your colleagues.
File Size 132 KB
Installation Count 28
Current Version 1.0.0
Last Updated 2023-01-18
Publish Date 2023-01-05
Developer rromikas
Email [email protected]
Payment Type free
Extension Website https://fiverr-chats.vercel.app/
Help Page URL https://fiverr-chats.vercel.app/
Privacy Policy Page URL https://romikas.vercel.app/privacy-policy
Supported Languages 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": []
        }
    ]
}