Word Counter

Counting the amount of a given word in the current page

什么是Word Counter?

Word Counter是由chatjonsmedia开发的Chrome扩展程序,该扩展的主要功能是“Counting the amount of a given word in the current page”。

扩展截图

screenshot

下载Word Counter扩展crx文件

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

扩展使用说明

                        Word Counter is a fun extension that will let the user count how many words appear in a page.                    

扩展基本信息

名称 Word Counter Word Counter
ID ledamfbeelplcjfjclabbckmglgkmhdf
官方URL https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf
简介 Counting the amount of a given word in the current page
文件大小 14.55 KB
安装次数 2,959
当前版本 1
更新时间 2022-12-05
上架时间 2022-12-05
开发者 chatjonsmedia
电子邮箱 [email protected]
付费类型 free
扩展官网 https://home.ujhimselvepost.info/
帮助页面URL https://home.ujhimselvepost.info/contact.html
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Counting the amount of a given word in the current page",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Word Counter",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Word Counter",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}