Textbox Character Count

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

什麼是Textbox Character Count?

Textbox Character Count是由Michael Slevin開發的Chrome擴展程式,該擴展的主要功能是“Counts the number of non-whitespace characters in textboxes and places the count above them.”。

擴展截圖

screenshot

下載Textbox Character Count擴展crx文件

下載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
官方網址 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"
    ]
}