Medium Word Count

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

Apa itu Medium Word Count?

Medium Word Count adalah ekstensi Chrome yang dikembangkan oleh Heavy Code, dan fitur utamanya adalah "This extension counts the number of words in a draft post on the site medium.com".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Medium Word Count

Unduh file ekstensi Medium Word Count dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Medium Word Count Medium Word Count
ID hleffkfamabgiaimhikcbdkbifkcddac
URL Resmi https://chrome.google.com/webstore/detail/medium-word-count/hleffkfamabgiaimhikcbdkbifkcddac
Deskripsi This extension counts the number of words in a draft post on the site medium.com
Ukuran File 36.61 KB
Jumlah Instalasi 158
Versi Saat Ini 0.1.6
Terakhir Diperbarui 2014-06-24
Tanggal Publikasi 2014-06-24
Penilaian 2.33/5 Total 3 Penilaian
Pengembang Heavy Code
Tipe Pembayaran free
Situs Ekstensi https://github.com/kenstone/MediumWordCount
Bahasa yang Didukung 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\/"
    ]
}