Text Narrator
This extension narrates text on the page.
Text Narrator란 무엇입니까?
Text Narrator은(는) Jeffrey Yang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension narrates text on the page."입니다.
확장 프로그램 스크린샷
Text Narrator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is an open source simple text-to-speech narrator that uses Chrome's built-in Text-to-Speech API. Tested on Windows 8 and OSX so far. Please report any issues. Source code and issue tracking are available here: https://github.com/sajacy/textnarrator-chrome-extension
확장 프로그램 기본 정보
이름 | |
ID | gmachijmpknamgdoelcmkcepbjilhfoe |
공식 URL | https://chrome.google.com/webstore/detail/text-narrator/gmachijmpknamgdoelcmkcepbjilhfoe |
설명 | This extension narrates text on the page. |
파일 크기 | 18.79 KB |
설치 횟수 | 50,000 |
현재 버전 | 1.0 |
최근 업데이트 | 2014-01-20 |
출시 날짜 | 2014-01-20 |
평점 | 2.94/5 총 54 개의 평점 |
개발자 | Jeffrey Yang |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://jyang.firebaseapp.com/what-if-analysis/privacy_policy.html |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Text Narrator", "description": "This extension narrates text on the page.", "version": "1.0", "background": { "scripts": [ "narrate.js", "background.js" ] }, "icons": { "16": "img\/speak16.png", "48": "img\/speak48.png", "128": "img\/speak.png" }, "permissions": [ "contextMenus", "tabs", "tts", "http:\/\/*\/", "https:\/\/*\/" ], "browser_action": { "default_icon": "img\/speak.png", "default_popup": "popup.html" } } |