Word Count

Counts the words in the document selection and text entry.

Τι είναι το Word Count;

Το Word Count είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον shawn.hoover, και η κύρια λειτουργία του είναι "Counts the words in the document selection and text entry.".

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

screenshot
screenshot

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

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

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

                        Counts the words in the document selection and text entry. The count is displayed in an icon in the location bar. Use this to track word counts as you type or if you're curious how many words are in part of a web page.                    

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

Όνομα Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Επίσημο URL https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Περιγραφή Counts the words in the document selection and text entry.
Μέγεθος Αρχείου 9.76 KB
Αριθμός Εγκαταστάσεων 195
Τρέχουσα Έκδοση 0.4
Τελευταία Ενημέρωση 2015-07-30
Ημερομηνία Δημοσίευσης 2015-07-30
Αξιολόγηση 3.14/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής shawn.hoover
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://bitbucket.org/shoover/word-count-ext
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "Counts the words in the document selection and text entry.",
    "icons": {
        "64": "logo64.png",
        "128": "logo128.png"
    },
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_title": "Word Count"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}