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文件
下载Talk 2 Me扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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) 扩展基本信息
| 名称 | |
| 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"
]
} | |