Bizrobe Auto Follow up
Auto email Follow Up extension for Gmail
Co je Bizrobe Auto Follow up?
Bizrobe Auto Follow up je rozšíření Chrome vyvinuté https://bizrobe.com, a jeho hlavní funkcí je „Auto email Follow Up extension for Gmail“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Bizrobe Auto Follow up
Stáhněte si soubory rozšíření Bizrobe Auto Follow up ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Bizrobe is a chrome extension for following up automatically on the primary email sent through gmail. This is built to reduce the time to manually check on the sent items in email and then following up with a time interval. This helps increases productivity and can be used by Sales, HR, Marketing or any functions which uses gmail for communication. Bizrobe also provides a dashboard with analytics for the users to understand the followup patterns.
Základní Informace o Rozšíření
Název | |
ID | hepapmlnfobfldboadbapjgmgmbenehl |
Oficiální URL | https://chromewebstore.google.com/detail/bizrobe-auto-follow-up/hepapmlnfobfldboadbapjgmgmbenehl |
Popis | Auto email Follow Up extension for Gmail |
Velikost souboru | 159 KB |
Počet instalací | 34 |
Aktuální Verze | 1.2.3 |
Poslední Aktualizace | 2023-10-21 |
Datum Vydání | 2023-09-20 |
Hodnocení | 5.00/5 Celkem 9 Hodnocení |
Vývojář | https://bizrobe.com |
[email protected] | |
Typ Platby | in_app |
Webové stránky Rozšíření | https://bizrobe.com |
URL Stránky Nápovědy | https://bizrobe.com/support |
URL Stránky Zásad Ochrany Soukromí | https://bizrobe.com/privacy |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bizrobe Auto Follow up", "description": "Auto email Follow Up extension for Gmail", "icons": { "128": "Bizrobe_Logo.png" }, "action": { "default_popup": "popup.html" }, "version": "1.2.3", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/mail\/*" ], "js": [ "contentmang.js" ] }, { "matches": [ "https:\/\/mail.google.com\/mail\/*" ], "js": [ "jquery.min.js", "gmail.js", "contentmang.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "background": { "service_worker": "serviceWorker.js" }, "permissions": [ "scripting" ], "host_permissions": [ "https:\/\/mail.google.com\/mail\/*" ] } |