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.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου 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 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"
            ]
        }
    ]
}