Count selected characters and words

A simple tool to count selected characters and words.

什么是Count selected characters and words?

Count selected characters and words是由http://riangraphics.com开发的Chrome扩展程序,该扩展的主要功能是“A simple tool to count selected characters and words.”。

扩展截图

screenshot

下载Count selected characters and words扩展crx文件

下载Count selected characters and words扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Count selected characters and words on the fly, just select the text and get the result, to enable it just save the settings                    

扩展基本信息

名称 Count selected characters and words Count selected characters and words
ID pdbaijkfobjcdkppnnmjddjgfhjdpoge
官方URL https://chrome.google.com/webstore/detail/count-selected-characters/pdbaijkfobjcdkppnnmjddjgfhjdpoge
简介 A simple tool to count selected characters and words.
文件大小 7.42 KB
安装次数 75
当前版本 1.0.4
更新时间 2018-10-09
上架时间 2018-10-09
评分 4.50/5 共4次评分
开发者 http://riangraphics.com
付费类型 free
扩展官网 https://riangraphics.com/highlithed-word-counter/
帮助页面URL https://riangraphics.com/highlithed-word-counter/#faq
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Count selected characters and words",
    "description": "A simple tool to count selected characters and words.",
    "version": "1.0.4",
    "author": "RianGraphics",
    "browser_action": {
        "default_icon": "tab-icon.png",
        "default_popup": "index.html",
        "default_title": "Count selected characters and words"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "rc-styles.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}