Word Count
Display the number of words and characters within highlight in contextMenu and bottom right
Cos'è Word Count?
Word Count è un'estensione di Chrome sviluppata da Zeno, e la sua funzione principale è "Display the number of words and characters within highlight in contextMenu and bottom right".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Word Count
Scarica i file di estensione Word Count in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Word Count |
ID | inaklojbeljbfmkkpjfmjjgehckpeohf |
URL Ufficiale | https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf |
Descrizione | Display the number of words and characters within highlight in contextMenu and bottom right |
Dimensione del File | 15.59 KB |
Conteggio Installazioni | 53 |
Versione Corrente | 0.2 |
Ultimo Aggiornamento | 2022-06-09 |
Data di Pubblicazione | 2022-06-09 |
Sviluppatore | Zeno |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.buymeacoffee.com/WhyNotBeFrg |
Lingue Supportate | 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" ] } ] } |