Friendly Voice
Makes Google Voice a little friendlier when you type more than 320 characters.
Friendly Voiceคืออะไร?
Friendly Voice เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://codingeverything.com และคุณลักษณะหลักของมันคือ "Makes Google Voice a little friendlier when you type more than 320 characters."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Friendly Voice
ดาวน์โหลดไฟล์ส่วนขยาย Friendly Voice ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Google Voice can send out messages of up to 440 characters, spread out over 3 different texts. When you get to the third text, Google adds a snarky little message saying "Really?". This app replaces the quip with an an informative character countdown. It lets you know how many characters are remaining so you can plan your message accordingly. You can look at it, run it on your own, or fork it from here: https://github.com/KyleMit/FriendlyVoice Also includes ability to resize message box area and ability to incrementally show hidden messages
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Friendly Voice |
ID | jllcpomhmjkgngnjcjccfchgnbkkhhke |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/friendly-voice/jllcpomhmjkgngnjcjccfchgnbkkhhke |
คำอธิบาย | Makes Google Voice a little friendlier when you type more than 320 characters. |
ขนาดไฟล์ | 33.19 KB |
จำนวนการติดตั้ง | 135 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2014-09-06 |
วันที่เผยแพร่ | 2014-09-06 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://codingeverything.com |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/KyleMit/FriendlyVoice |
URL หน้าช่วยเหลือ | https://github.com/KyleMit/FriendlyVoice/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Friendly Voice", "version": "1.2", "description": "Makes Google Voice a little friendlier when you type more than 320 characters.", "icons": { "16": "Icons\/Logo16.png", "32": "Icons\/Logo32.png", "48": "Icons\/Logo48.png", "128": "Icons\/Logo128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/voice*" ], "js": [ "script.js" ], "css": [ "style.css" ] } ] } |