Fiverr Chats
Extension created for Fiverr selers which allow to securely share client communication with your colleagues.
Τι είναι το Fiverr Chats;
Το Fiverr Chats είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rromikas, και η κύρια λειτουργία του είναι "Extension created for Fiverr selers which allow to securely share client communication with your colleagues.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Fiverr Chats
Λήψη αρχείων επέκτασης 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 |
ID | cbhkjgjolleaohbpmkbinglohhgaclhc |
Επίσημο URL | 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": [] } ] } |