Friendly Voice
Makes Google Voice a little friendlier when you type more than 320 characters.
什么是Friendly Voice?
Friendly Voice是由https://codingeverything.com开发的Chrome扩展程序,该扩展的主要功能是“Makes Google Voice a little friendlier when you type more than 320 characters.”。
扩展截图
下载Friendly Voice扩展crx文件
下载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" ] } ] } |