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 to jest Word Counter?
Word Counter to rozszerzenie Chrome opracowane przez mileswiesenthal, a jego główną funkcją jest „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.”.
Pobierz plik CRX rozszerzenia Word Counter
Pobierz pliki rozszerzeń Word Counter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | genbfnkneekjmppgniacjffdphjgadpd |
Oficjalny URL | https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd |
Opis | 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. |
Rozmiar pliku | 359 KB |
Liczba instalacji | 19 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2017-08-07 |
Data Publikacji | 2017-08-07 |
Ocena | 1.00/5 Łącznie 1 Oceny |
Deweloper | mileswiesenthal |
Typ Płatności | free |
Obsługiwane Języki | 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:\/\/*\/*" ] } |