Record Voice Messages in Gmail - Beep
Record, send, and listen to audio messages in Gmail. It's the faster, friendlier way to send and receive voicemail.
What is Record Voice Messages in Gmail - Beep?
Record Voice Messages in Gmail - Beep is a Chrome extension developed by https://beepaudio.com, and its main feature is "Record, send, and listen to audio messages in Gmail. It's the faster, friendlier way to send and receive voicemail.".
Extension Screenshots
Download Record Voice Messages in Gmail - Beep Extension CRX File
Download Record Voice Messages in Gmail - Beep 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
Beep for Gmail is a tool that allows you record and send voice notes in Gmail. Responding to emails can be pain…especially long ones. It’s hard to type everything you feel. So we procrastinate or worse, forget to respond. Thankfully, voice messages make this a whole lot easier. 🤔 Why voice messages? Audio messages take the friendliness and ease of a phone call without the difficulty of scheduling a call and combines it with the speed of email without the drudgery of crafting the perfect response and tone. You can talk a lot faster than you can type! ⚙️ How it works? 1. Install the extension above. 2. Visit Gmail 3. Click the red microphone to the right of the send button to start recording. That’s it. A link and image of a player will be inserted into the email and all you have to do is send that message to the recipient. 🙋🏾♀️ Who’s it for? 👩🏿💻 CEOS/Entrepreneurs/Business Owners When you’ve got a million small things and tasks on your plate, replying to emails can be incredibly time-consuming and distracting. With audio, it’s a lot faster. 👨🏽💼 Sales Reps Sometimes you want to add a personal touch to stand out with your prospects. Voice can create a connection that written communication cannot. 👨🏫 Teachers and Educators If feedback isn’t delivered in a tactful way, you can hurt and derail a student’s learning. Plus, well-crafted, written responses take tons of time, vocalizing this feedback is far faster and friendlier. 👩💻 Marketers, Finance Professionals It can sometimes feel like a chore to respond to long emails or financial reports. Beep allows you to distill what would be a long email into a brief message. 👷♀️ Project Managers & Product Managers You’ve got millions of details to manage and voice memos can convey more to your team in a shorter amount of time. 👵 Seniors or People with Disabilities Typing can be difficult and time-consuming for people who aren’t super fast at typing. Make responding as easy as clicking a button. Plus seniors get to hear the voices of their loved ones. ***Questions, Comments, or Suggestions*** Visit our site at beepaudio.com or send us an email [email protected] ***Disclaimer*** This app is not affiliated with or officially endorsed by Google or Gmail in any way
Extension Basic Information
Name | Record Voice Messages in Gmail - Beep |
ID | kcgmbngghfpnddnfccnabnioiidenipc |
Official URL | https://chromewebstore.google.com/detail/record-voice-messages-in/kcgmbngghfpnddnfccnabnioiidenipc |
Description | Record, send, and listen to audio messages in Gmail. It's the faster, friendlier way to send and receive voicemail. |
File Size | 1.22 MB |
Installation Count | 4,215 |
Current Version | 1.22 |
Last Updated | 2023-11-02 |
Publish Date | 2021-05-08 |
Rating | 4.91/5 Total 69 Ratings |
Developer | https://beepaudio.com |
[email protected] | |
Payment Type | free |
Extension Website | https://www.beepaudio.com |
Help Page URL | https://www.beepaudio.com |
Privacy Policy Page URL | https://www.beepaudio.com/privacy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Record Voice Messages in Gmail - Beep", "short_name": "Beep for Gmail", "author": "@beepaudio", "version": "1.22", "description": "Record, send, and listen to audio messages in Gmail. It's the faster, friendlier way to send and receive voicemail.", "permissions": [ "https:\/\/mail.google.com\/", "storage", "activeTab" ], "manifest_version": 2, "background": { "page": "background.html", "persistent": false }, "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/inbox.google.com\/*" ], "js": [ "inboxsdk.js", "gmail-content.bundle.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "\/assets\/*" ], "browser_action": { "default_popup": "popup.html", "default_title": "Beep for Gmail", "default_icon": { "16": "\/assets\/icon16.png", "48": "\/assets\/icon48.png", "128": "\/assets\/icon128.png" } }, "icons": { "16": "\/assets\/icon16.png", "48": "\/assets\/icon48.png", "128": "\/assets\/icon128.png" }, "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/apis.google.com https:\/\/www.googleapis.com; object-src 'self'" } |