Medium Word Count

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

Cos'è Medium Word Count?

Medium Word Count è un'estensione di Chrome sviluppata da Heavy Code, e la sua funzione principale è "This extension counts the number of words in a draft post on the site medium.com".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Medium Word Count

Scarica i file di estensione Medium Word Count in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Medium Word Count Medium Word Count
ID hleffkfamabgiaimhikcbdkbifkcddac
URL Ufficiale https://chrome.google.com/webstore/detail/medium-word-count/hleffkfamabgiaimhikcbdkbifkcddac
Descrizione This extension counts the number of words in a draft post on the site medium.com
Dimensione del File 36.61 KB
Conteggio Installazioni 158
Versione Corrente 0.1.6
Ultimo Aggiornamento 2014-06-24
Data di Pubblicazione 2014-06-24
Valutazione 2.33/5 Totale 3 Valutazioni
Sviluppatore Heavy Code
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kenstone/MediumWordCount
Lingue Supportate 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\/"
    ]
}