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