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 Heavy Code द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension counts the number of words in a draft post on the site medium.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Medium Word Count एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/" ] } |