Textbox Character Count

Counts the number of non-whitespace characters in textboxes and places the count above them.

Τι είναι το Textbox Character Count;

Το Textbox Character Count είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Michael Slevin, και η κύρια λειτουργία του είναι "Counts the number of non-whitespace characters in textboxes and places the count above them.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Textbox Character Count

Λήψη αρχείων επέκτασης Textbox Character Count σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Chrome extension to display character counts above text boxes. ONLY works on Professor Staley's IHS course pages.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Textbox Character Count Textbox Character Count
ID pfpmdncabdmdfboaikkaekpmppdolaci
Επίσημο URL https://chromewebstore.google.com/detail/textbox-character-count/pfpmdncabdmdfboaikkaekpmppdolaci
Περιγραφή Counts the number of non-whitespace characters in textboxes and places the count above them.
Μέγεθος Αρχείου 4.13 KB
Αριθμός Εγκαταστάσεων 34
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2014-08-25
Ημερομηνία Δημοσίευσης 2014-08-24
Προγραμματιστής Michael Slevin
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Textbox Character Count",
    "version": "1.0",
    "manifest_version": 2,
    "homepage_url": "https:\/\/github.com\/mslevin",
    "description": "Counts the number of non-whitespace characters in textboxes and places the count above them.",
    "content_scripts": [
        {
            "js": [
                "inject.js"
            ],
            "matches": [
                "http:\/\/cstaley.csc.calpoly.edu:8080\/*",
                "https:\/\/cstaley.csc.calpoly.edu:8080\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "script.js"
    ]
}