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.
Vad är Word Counter?
Word Counter är en Chrome-tillägg utvecklad av mileswiesenthal, och dess huvudfunktion är "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.".
Ladda ner Word Counter-förlängningens CRX-fil
Ladda ner Word Counter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | genbfnkneekjmppgniacjffdphjgadpd |
Officiell webbadress | https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd |
Beskrivning | 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. |
Filstorlek | 359 KB |
Antal Installationer | 19 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2017-08-07 |
Publiceringsdatum | 2017-08-07 |
Betyg | 1.00/5 Totalt 1 Betyg |
Utvecklare | mileswiesenthal |
Betalningssätt | free |
Stödda Språk | 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:\/\/*\/*" ] } |