Voice Drop
Sometimes you don’t have enough time to type your message, or sometimes just talking about it would be a lot easier and clearer.…
Voice Drop क्या है?
Voice Drop Metabolic Inc. द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sometimes you don’t have enough time to type your message, or sometimes just talking about it would be a lot easier and clearer.…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Voice Drop एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Sometimes you don’t have enough time to type your message, or sometimes just talking about it would be a lot easier and clearer. Unfortunately, there are many places where your only option is to type your message. Voice Drop is a Chrome extension that gives you the choice to use your voice where only typing is provided. Just record your message with the record button that will appear on every long text field, and then drop it as a voice link. Your recipients can play it anytime and at the speed of their choice. They can listen to you while looking at the context of the message, while talking a walk or fully focusing on the verbal and non-verbal content of your message. Voice Drop - Speak even where you can’t
एक्सटेंशन की मूल जानकारी
नाम | Voice Drop |
ID | fndpfhokbajlpdhegoclkdplgnjehkgp |
आधिकारिक URL | https://chromewebstore.google.com/detail/voice-drop/fndpfhokbajlpdhegoclkdplgnjehkgp |
विवरण | Sometimes you don’t have enough time to type your message, or sometimes just talking about it would be a lot easier and clearer.… |
फ़ाइल का आकार | 766 KB |
स्थापना संख्या | 556 |
वर्तमान संस्करण | 0.1.0 |
अंतिम अपडेट | 2020-06-22 |
प्रकाशन तिथि | 2020-06-22 |
रेटिंग | 3.00/5 कुल 1 रेटिंग्स |
डेवलपर | Metabolic Inc. |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "short_name": "Voice Drop", "name": "Voice Drop", "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Voice Drop - click to toggle" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "injectable.js" ] } ], "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png" }, "permissions": [ "activeTab", "identity" ], "web_accessible_resources": [ "recorder.html" ], "version": "0.1.0" } |