Tally Word Counter

Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.

Τι είναι το Tally Word Counter;

Το Tally Word Counter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://tallywordcounter.online, και η κύρια λειτουργία του είναι "Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Tally Word Counter

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

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

                        Your favorite character counter! Tally is a Chrome extension to easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count to see the number of characters, words, sentences, paragraphs, spaces, letters, digits, and special characters in your text.

Visit tallywordcounter.online for the full site.                    

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

Όνομα Tally Word Counter Tally Word Counter
ID eggkmbghbmjmbdjloifaklghfiecjbnk
Επίσημο URL https://chromewebstore.google.com/detail/tally-word-counter/eggkmbghbmjmbdjloifaklghfiecjbnk
Περιγραφή Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.
Μέγεθος Αρχείου 13.05 KB
Αριθμός Εγκαταστάσεων 331
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2019-06-06
Ημερομηνία Δημοσίευσης 2019-05-31
Αξιολόγηση 2.67/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής https://tallywordcounter.online
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tally Word Counter",
    "short_name": "Tally",
    "description": "Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.",
    "version": "1.1",
    "icons": {
        "128": "128.png",
        "48": "48.png",
        "32": "32.png",
        "16": "16.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "manifest_version": 2
}