Word Counter

Estimates how many words you read in selected language

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

Το Word Counter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον tobecomebig, και η κύρια λειτουργία του είναι "Estimates how many words you read in selected language".

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

screenshot

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

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

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

                        Aren't you interested in knowing how many words approximately you do read for the day?
This extension counts the number of words. The best way to use this extension is when you are learning foreign languages!!

The app counts up words in language you select. English (default), French, and Spanish are available.

****** Notice ******
・The extension does not count how many words in some web pages.
・The number of words is estimate. That measures the total number of words in web pages and add half of it assuming you read.                    

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

Όνομα Word Counter Word Counter
ID dkgjjjoaomepomilhkpoccnlcibihnac
Επίσημο URL https://chrome.google.com/webstore/detail/word-counter/dkgjjjoaomepomilhkpoccnlcibihnac
Περιγραφή Estimates how many words you read in selected language
Μέγεθος Αρχείου 43.16 KB
Αριθμός Εγκαταστάσεων 10
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2014-03-10
Ημερομηνία Δημοσίευσης 2014-03-10
Προγραμματιστής tobecomebig
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Counter",
    "version": "0.2",
    "manifest_version": 2,
    "description": "Estimates how many words you read in selected language",
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "countUp.min.copy.js",
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Word Counter",
        "default_popup": "popup.html"
    }
}