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 |
官方網址 | 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\/" ] } |