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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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 της επέκτασης Voice Drop
Λήψη αρχείων επέκτασης Voice Drop σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" } |