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
官方URL 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"
        ]
    }
}