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.
Τι είναι το Word Counter;
Το Word Counter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mileswiesenthal, και η κύρια λειτουργία του είναι "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.".
Λήψη αρχείου CRX της επέκτασης Word Counter
Λήψη αρχείων επέκτασης Word Counter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | genbfnkneekjmppgniacjffdphjgadpd |
Επίσημο URL | https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd |
Περιγραφή | 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. |
Μέγεθος Αρχείου | 359 KB |
Αριθμός Εγκαταστάσεων | 19 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2017-08-07 |
Ημερομηνία Δημοσίευσης | 2017-08-07 |
Αξιολόγηση | 1.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | mileswiesenthal |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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:\/\/*\/*" ] } |