Quick Character Count

Count characters in selected text

什麼是Quick Character Count?

Quick Character Count是由prestonfrom開發的Chrome擴展程式,該擴展的主要功能是“Count characters in selected text”。

擴展截圖

screenshot

下載Quick Character Count擴展crx文件

下載Quick Character Count擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This is an ultra simple extension to find the character count of selected text. Good for bloggers/editors who are trying to keep titles, etc. under a certain length. Just highlight text and select "Character count" from the context (left-click) menu.                    

擴展基本資訊

名稱 Quick Character Count Quick Character Count
ID cobjdgciclhjhpheafbpooknokhnkoof
官方網址 https://chromewebstore.google.com/detail/quick-character-count/cobjdgciclhjhpheafbpooknokhnkoof
簡介 Count characters in selected text
檔案大小 8.13 KB
安裝次數 41
目前版本 1.5.1
更新時間 2016-02-25
上架時間 2016-02-25
評分 2.00/5 共 2 次評分
開發者 prestonfrom
付費類型 free
擴展官網 https://github.com/prestonfrom/
說明頁面URL https://github.com/prestonfrom/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Character Count",
    "description": "Count characters in selected text",
    "version": "1.5.1",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon-bitty.png",
        "48": "icon.png",
        "128": "iconbig.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}