Count Words
Count the amount of words in your page!
What is Count Words?
Count Words is a Chrome extension developed by andinomedia.co, and its main feature is "Count the amount of words in your page!".
Extension Screenshots
Download Count Words Extension CRX File
Download Count Words extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Count Words is a fun extension that will count how many times a word appears in the user's page.
Extension Basic Information
Name | |
ID | bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
Official URL | https://chrome.google.com/webstore/detail/count-words/bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
Description | Count the amount of words in your page! |
File Size | 14.58 KB |
Installation Count | 1,649 |
Current Version | 1 |
Last Updated | 2022-12-08 |
Publish Date | 2022-12-08 |
Developer | andinomedia.co |
[email protected] | |
Payment Type | free |
Extension Website | https://home.sdgebralefuki.info/ |
Help Page URL | https://home.sdgebralefuki.info/contact.html |
Supported Languages | 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" ] } ] } |