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によって開発されたChromeの拡張機能で、その主な機能は「This extension counts the number of words in a draft post on the site medium.com」です。
拡張機能のスクリーンショット
Medium Word Count拡張機能のCRXファイルをダウンロード
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\/" ] } |