Count Words
Count the amount of words in your page!
什么是Count Words?
Count Words是由andinomedia.co开发的Chrome扩展程序,该扩展的主要功能是“Count the amount of words in your page!”。
扩展截图
下载Count Words扩展crx文件
下载Count Words扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Count Words is a fun extension that will count how many times a word appears in the user's page.
扩展基本信息
名称 | |
ID | bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
官方URL | https://chrome.google.com/webstore/detail/count-words/bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
简介 | Count the amount of words in your page! |
文件大小 | 14.58 KB |
安装次数 | 1,649 |
当前版本 | 1 |
更新时间 | 2022-12-08 |
上架时间 | 2022-12-08 |
开发者 | andinomedia.co |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://home.sdgebralefuki.info/ |
帮助页面URL | https://home.sdgebralefuki.info/contact.html |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Count the amount of words in your page!", "icons": { "128": "logo.png" }, "action": { "default_icon": "logo.png", "default_title": "Count Words", "default_popup": "popup.html" }, "manifest_version": 3, "name": "Count Words", "version": "1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ] } |