Word Count
Display the number of words and characters within highlight in contextMenu and bottom right
Hvad er Word Count?
Word Count er en Chrome-udvidelse udviklet af Zeno, og dens hovedfunktion er "Display the number of words and characters within highlight in contextMenu and bottom right".
Udvidelsesskærmbilleder
Download Word Count-udvidelses-CRX-fil
Download Word Count-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Word Count |
ID | inaklojbeljbfmkkpjfmjjgehckpeohf |
Officiel URL | https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf |
Beskrivelse | Display the number of words and characters within highlight in contextMenu and bottom right |
Filstørrelse | 15.59 KB |
Antal Installationer | 53 |
Nuværende Version | 0.2 |
Senest Opdateret | 2022-06-09 |
Udgivelsesdato | 2022-06-09 |
Udvikler | Zeno |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://www.buymeacoffee.com/WhyNotBeFrg |
Understøttede Sprog | 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" ] } ] } |