Friendly Voice
Makes Google Voice a little friendlier when you type more than 320 characters.
Co to jest Friendly Voice?
Friendly Voice to rozszerzenie Chrome opracowane przez https://codingeverything.com, a jego główną funkcją jest „Makes Google Voice a little friendlier when you type more than 320 characters.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Friendly Voice
Pobierz pliki rozszerzeń Friendly Voice w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Friendly Voice |
ID | jllcpomhmjkgngnjcjccfchgnbkkhhke |
Oficjalny URL | https://chromewebstore.google.com/detail/friendly-voice/jllcpomhmjkgngnjcjccfchgnbkkhhke |
Opis | Makes Google Voice a little friendlier when you type more than 320 characters. |
Rozmiar pliku | 33.19 KB |
Liczba instalacji | 135 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2014-09-06 |
Data Publikacji | 2014-09-06 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | https://codingeverything.com |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/KyleMit/FriendlyVoice |
Adres URL Strony Pomocy | https://github.com/KyleMit/FriendlyVoice/issues |
Obsługiwane Języki | 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" ] } ] } |