Medium Word Count

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

Wat is Medium Word Count?

Medium Word Count is een Chrome-extensie ontwikkeld door Heavy Code, en de belangrijkste functie is "This extension counts the number of words in a draft post on the site medium.com".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Medium Word Count

Download Medium Word Count-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Medium Word Count Medium Word Count
ID hleffkfamabgiaimhikcbdkbifkcddac
Officiële URL https://chrome.google.com/webstore/detail/medium-word-count/hleffkfamabgiaimhikcbdkbifkcddac
Beschrijving This extension counts the number of words in a draft post on the site medium.com
Bestandsgrootte 36.61 KB
Aantal Installaties 158
Huidige Versie 0.1.6
Laatst Bijgewerkt 2014-06-24
Publicatiedatum 2014-06-24
Beoordeling 2.33/5 Totaal 3 Beoordelingen
Ontwikkelaar Heavy Code
Betalingswijze free
Extensiewebsite https://github.com/kenstone/MediumWordCount
Ondersteunde Talen 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\/"
    ]
}