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.
Wat is Word Counter?
Word Counter is een Chrome-extensie ontwikkeld door mileswiesenthal, en de belangrijkste functie is "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.".
Download het CRX-bestand van de extensie Word Counter
Download Word Counter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | genbfnkneekjmppgniacjffdphjgadpd |
Officiële URL | https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd |
Beschrijving | 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. |
Bestandsgrootte | 359 KB |
Aantal Installaties | 19 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2017-08-07 |
Publicatiedatum | 2017-08-07 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | mileswiesenthal |
Betalingswijze | free |
Ondersteunde Talen | 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:\/\/*\/*" ] } |