Medium Word Count

This extension counts the number of words in a draft post on the site medium.com

Medium Word Count란 무엇입니까?

Medium Word Count은(는) Heavy Code에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension counts the number of words in a draft post on the site medium.com"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Medium.com is a place for people to write posts and let people read them. By default, Medium doesn't count the number of words of a post you've written. Instead, Medium likes to tell users how long it will take to read an article.

This extension does what Medium doesn't and counts the number of words in a post. This count is subtlety displayed at the top of the page.

If you've ever wanted to write a post on medium.com that is a specific length, this extension will keep you informed of how long your post is.                    

확장 프로그램 기본 정보

이름 Medium Word Count Medium Word Count
ID hleffkfamabgiaimhikcbdkbifkcddac
공식 URL https://chrome.google.com/webstore/detail/medium-word-count/hleffkfamabgiaimhikcbdkbifkcddac
설명 This extension counts the number of words in a draft post on the site medium.com
파일 크기 36.61 KB
설치 횟수 158
현재 버전 0.1.6
최근 업데이트 2014-06-24
출시 날짜 2014-06-24
평점 2.33/5 총 3 개의 평점
개발자 Heavy Code
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kenstone/MediumWordCount
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Medium Word Count",
    "description": "This extension counts the number of words in a draft post on the site medium.com",
    "version": "0.1.6",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/medium.com\/*"
            ],
            "css": [
                "css\/mediumcount.css"
            ],
            "js": [
                "scripts\/jquery-2.0.3.min.js",
                "scripts\/mediumcount.js"
            ]
        }
    ],
    "permissions": [
        "history",
        "tabs",
        "https:\/\/medium.com\/"
    ]
}