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.
Qu'est-ce que Word Counter ?
Word Counter est une extension Chrome développée par mileswiesenthal, et sa fonction principale est "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.".
Télécharger le fichier CRX de l'extension Word Counter
Téléchargez les fichiers d'extension Word Counter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | genbfnkneekjmppgniacjffdphjgadpd |
URL Officiel | https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd |
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. |
Taille du Fichier | 359 KB |
Nombre d'Installations | 19 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2017-08-07 |
Date de Publication | 2017-08-07 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | mileswiesenthal |
Type de Paiement | free |
Langues Prises en Charge | 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:\/\/*\/*" ] } |