Talk 2 Me
Reads highlighted text in the browser.
Talk 2 Meคืออะไร?
Talk 2 Me เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Reece และคุณลักษณะหลักของมันคือ "Reads highlighted text in the browser."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Talk 2 Me
ดาวน์โหลดไฟล์ส่วนขยาย 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"
]
} | |