count(text)

Shows word and characters count and some other info on any selected text (context menu).

Τι είναι το count(text);

Το count(text) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Konstantin Kitmanov, και η κύρια λειτουργία του είναι "Shows word and characters count and some other info on any selected text (context menu).".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης count(text)

Λήψη αρχείων επέκτασης count(text) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Select any text and use context menu to show character, word count and other useful text statistics. Unlike other word count and text stats tools, it correctly counts not only Latin-based texts.
This extension is open-source software, feel free to contribute.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα count(text) count(text)
ID hdecimbkbmbanpandpcljaifkdelncan
Επίσημο URL https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan
Περιγραφή Shows word and characters count and some other info on any selected text (context menu).
Μέγεθος Αρχείου 10.71 KB
Αριθμός Εγκαταστάσεων 261
Τρέχουσα Έκδοση 2.0.2
Τελευταία Ενημέρωση 2022-10-04
Ημερομηνία Δημοσίευσης 2016-07-31
Αξιολόγηση 3.50/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής Konstantin Kitmanov
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/hogart/count-text-chrome-extension
Υποστηριζόμενες Γλώσσες en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "count(text)",
    "description": "Shows word and characters count and some other info on any selected text (context menu).",
    "version": "2.0.2",
    "permissions": [
        "contextMenus",
        "notifications"
    ],
    "background": {
        "service_worker": "bg.js",
        "type": "module"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "offline_enabled": true,
    "default_locale": "en",
    "content_scripts": []
}