Talk 2 Me
Reads highlighted text in the browser.
Talk 2 Me란 무엇입니까?
Talk 2 Me은(는) Reece에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reads highlighted text in the browser."입니다.
확장 프로그램 스크린샷
Talk 2 Me 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds a context menu item when text is highlighted. There is another added while text is being read. There is a shortcut with ctrl+shift+space that will start/stop reading as well. The extension reads all text across multiple lines so some formats prove troublesome (eg a reddit comment thread with small links between chunks of text). known bugs: text containing "<" will stop reading at that character (possibly other characters that are not escaped)
확장 프로그램 기본 정보
이름 | Talk 2 Me |
ID | cinafiioibibecaliaehfkbkjafaakak |
공식 URL | https://chromewebstore.google.com/detail/talk-2-me/cinafiioibibecaliaehfkbkjafaakak |
설명 | Reads highlighted text in the browser. |
파일 크기 | 10.62 KB |
설치 횟수 | 26 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2019-11-19 |
출시 날짜 | 2019-11-18 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Reece |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Talk 2 Me", "version": "1.0.0", "description": "Reads highlighted text in the browser.", "icons": { "16": "32.png", "32": "32.png", "64": "64.png", "128": "128.png" }, "commands": { "exec_T2M": { "suggested_key": { "default": "Ctrl+Shift+Space", "mac": "Command+Shift+Space" }, "description": "Execute function" }, "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+1", "mac": "Command+Shift+1" }, "description": "Execute function" } }, "background": { "scripts": [ "background.js" ], "persistent": true }, "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_icon": { "32": "32.png" }, "default_title": "Read highlighted text", "default_popup": "options.html" }, "permissions": [ "activeTab", "contextMenus", "storage" ] } |