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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Heavy Code, και η κύρια λειτουργία του είναι "This extension counts the number of words in a draft post on the site medium.com".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Medium Word Count
Λήψη αρχείων επέκτασης Medium Word Count σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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\/" ] } |