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 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"
    ]
}