Word Count
Display the number of words and characters within highlight in contextMenu and bottom right
Wat is Word Count?
Word Count is een Chrome-extensie ontwikkeld door Zeno, en de belangrijkste functie is "Display the number of words and characters within highlight in contextMenu and bottom right".
Extensie Screenshots
Download het CRX-bestand van de extensie Word Count
Download Word Count-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Display the number of words and characters within highlight in context menu and bottom right On highlight, show the word count and the number of characters immediately. Settings to change to - dark count box - hide count box Chrome extension word counter to easily count words & characters
Basisinformatie over de Extensie
Naam | Word Count |
ID | inaklojbeljbfmkkpjfmjjgehckpeohf |
Officiële URL | https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf |
Beschrijving | Display the number of words and characters within highlight in contextMenu and bottom right |
Bestandsgrootte | 15.59 KB |
Aantal Installaties | 53 |
Huidige Versie | 0.2 |
Laatst Bijgewerkt | 2022-06-09 |
Publicatiedatum | 2022-06-09 |
Ontwikkelaar | Zeno |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.buymeacoffee.com/WhyNotBeFrg |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Word Count", "version": "0.2", "description": "Display the number of words and characters within highlight in contextMenu and bottom right", "icons": { "16": "icons\/logo.png", "48": "icons\/logo.png", "128": "icons\/logo.png" }, "permissions": [ "tabs", "contextMenus", "scripting", "storage" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "action": { "default_title": "test", "default_popup": "key.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "test.js" ] } ] } |