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 |
| 官方網址 | 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"
]
} | |