Word Count
Display the number of words and characters within highlight in contextMenu and bottom right
Τι είναι το Word Count;
Το Word Count είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Zeno, και η κύρια λειτουργία του είναι "Display the number of words and characters within highlight in contextMenu and bottom right".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Word Count
Λήψη αρχείων επέκτασης Word Count σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Display the number of words and characters within highlight in context menu and bottom right On highlight, show the word count and the number of characters immediately. Settings to change to - dark count box - hide count box Chrome extension word counter to easily count words & characters
Βασικές Πληροφορίες Επέκτασης
Όνομα | Word Count |
ID | inaklojbeljbfmkkpjfmjjgehckpeohf |
Επίσημο URL | https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf |
Περιγραφή | Display the number of words and characters within highlight in contextMenu and bottom right |
Μέγεθος Αρχείου | 15.59 KB |
Αριθμός Εγκαταστάσεων | 53 |
Τρέχουσα Έκδοση | 0.2 |
Τελευταία Ενημέρωση | 2022-06-09 |
Ημερομηνία Δημοσίευσης | 2022-06-09 |
Προγραμματιστής | Zeno |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.buymeacoffee.com/WhyNotBeFrg |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Word Count", "version": "0.2", "description": "Display the number of words and characters within highlight in contextMenu and bottom right", "icons": { "16": "icons\/logo.png", "48": "icons\/logo.png", "128": "icons\/logo.png" }, "permissions": [ "tabs", "contextMenus", "scripting", "storage" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "action": { "default_title": "test", "default_popup": "key.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "test.js" ] } ] } |