Word Counter
Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
Co je Word Counter?
Word Counter je rozšíření Chrome vyvinuté mileswiesenthal, a jeho hlavní funkcí je „Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.“.
Stáhnout soubor CRX rozšíření Word Counter
Stáhněte si soubory rozšíření Word Counter 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í
Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
Základní Informace o Rozšíření
Název | |
ID | genbfnkneekjmppgniacjffdphjgadpd |
Oficiální URL | https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd |
Popis | Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word. |
Velikost souboru | 359 KB |
Počet instalací | 19 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2017-08-07 |
Datum Vydání | 2017-08-07 |
Hodnocení | 1.00/5 Celkem 1 Hodnocení |
Vývojář | mileswiesenthal |
Typ Platby | free |
Podporované Jazyky | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Counter", "short_name": "PM", "description": "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Word Counter" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "googleDocsUtil.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |