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.에 의해 개발된 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.…"입니다.
확장 프로그램 스크린샷
Voice Drop 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } |