Word Count on Webpage By Warp Vessel

A simple chrome extension that allows you to instantly see the word count on the current webpage.

什么是Word Count on Webpage By Warp Vessel?

Word Count on Webpage By Warp Vessel是由Warp Vessel Apps开发的Chrome扩展程序,该扩展的主要功能是“A simple chrome extension that allows you to instantly see the word count on the current webpage.”。

扩展截图

screenshot
screenshot

下载Word Count on Webpage By Warp Vessel扩展crx文件

下载Word Count on Webpage By Warp Vessel扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A simple chrome extension that allows you to instantly see the word count on the current webpage.                    

扩展基本信息

名称 Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
官方URL https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
简介 A simple chrome extension that allows you to instantly see the word count on the current webpage.
文件大小 6.48 KB
安装次数 321
当前版本 1.02
更新时间 2019-05-30
上架时间 2019-05-24
评分 3.75/5 共4次评分
开发者 Warp Vessel Apps
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count on Webpage By Warp Vessel",
    "version": "1.02",
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Word Count By Warp Vessel",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}