Medium Word Count

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

Was ist Medium Word Count?

Medium Word Count ist eine Chrome-Erweiterung, die von Heavy Code entwickelt wurde, und ihr Hauptmerkmal ist "This extension counts the number of words in a draft post on the site medium.com".

Erweiterungsscreenshots

screenshot

Medium Word Count-Erweiterungs-CRX-Datei herunterladen

Laden Sie Medium Word Count-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Medium Word Count Medium Word Count
ID hleffkfamabgiaimhikcbdkbifkcddac
Offizielle URL https://chrome.google.com/webstore/detail/medium-word-count/hleffkfamabgiaimhikcbdkbifkcddac
Beschreibung This extension counts the number of words in a draft post on the site medium.com
Dateigröße 36.61 KB
Installationsanzahl 158
Aktuelle Version 0.1.6
Letztes Update 2014-06-24
Veröffentlichungsdatum 2014-06-24
Bewertung 2.33/5 Insgesamt 3 Bewertungen
Entwickler Heavy Code
Zahlungsart free
Erweiterungswebsite https://github.com/kenstone/MediumWordCount
Unterstützte Sprachen 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\/"
    ]
}