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.
Was ist Word Counter?
Word Counter ist eine Chrome-Erweiterung, die von mileswiesenthal entwickelt wurde, und ihr Hauptmerkmal ist "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.".
Word Counter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Word Counter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | genbfnkneekjmppgniacjffdphjgadpd |
Offizielle URL | https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd |
Beschreibung | 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. |
Dateigröße | 359 KB |
Installationsanzahl | 19 |
Aktuelle Version | 1.0 |
Letztes Update | 2017-08-07 |
Veröffentlichungsdatum | 2017-08-07 |
Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
Entwickler | mileswiesenthal |
Zahlungsart | free |
Unterstützte Sprachen | 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:\/\/*\/*" ] } |