Textbox Character Count

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

Textbox Character Count là gì?

Textbox Character Count là một tiện ích mở rộng Chrome được phát triển bởi Michael Slevin, và tính năng chính của nó là "Counts the number of non-whitespace characters in textboxes and places the count above them.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Textbox Character Count

Tải xuống các tệp mở rộng Textbox Character Count dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Textbox Character Count Textbox Character Count
ID pfpmdncabdmdfboaikkaekpmppdolaci
URL Chính Thức https://chromewebstore.google.com/detail/textbox-character-count/pfpmdncabdmdfboaikkaekpmppdolaci
Mô tả Counts the number of non-whitespace characters in textboxes and places the count above them.
Kích Thước Tệp 4.13 KB
Số Lần Cài Đặt 34
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-08-25
Ngày Phát Hành 2014-08-24
Nhà Phát Triển Michael Slevin
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}