Word Count
Display the number of words and characters within highlight in contextMenu and bottom right
Co je Word Count?
Word Count je rozšíření Chrome vyvinuté Zeno, a jeho hlavní funkcí je „Display the number of words and characters within highlight in contextMenu and bottom right“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Word Count
Stáhněte si soubory rozšíření Word Count ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Word Count |
ID | inaklojbeljbfmkkpjfmjjgehckpeohf |
Oficiální URL | https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf |
Popis | Display the number of words and characters within highlight in contextMenu and bottom right |
Velikost souboru | 15.59 KB |
Počet instalací | 53 |
Aktuální Verze | 0.2 |
Poslední Aktualizace | 2022-06-09 |
Datum Vydání | 2022-06-09 |
Vývojář | Zeno |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.buymeacoffee.com/WhyNotBeFrg |
Podporované Jazyky | 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" ] } ] } |