Word Counter

Estimates how many words you read in selected language

Word Counter란 무엇입니까?

Word Counter은(는) tobecomebig에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Estimates how many words you read in selected language"입니다.

확장 프로그램 스크린샷

screenshot

Word Counter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}