Medium Word Count

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

Medium Word Count là gì?

Medium Word Count là một tiện ích mở rộng Chrome được phát triển bởi Heavy Code, và tính năng chính của nó là "This extension counts the number of words in a draft post on the site medium.com".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Medium Word Count

Tải xuống các tệp mở rộng Medium Word Count dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Medium Word Count Medium Word Count
ID hleffkfamabgiaimhikcbdkbifkcddac
URL Chính Thức https://chrome.google.com/webstore/detail/medium-word-count/hleffkfamabgiaimhikcbdkbifkcddac
Mô tả This extension counts the number of words in a draft post on the site medium.com
Kích Thước Tệp 36.61 KB
Số Lần Cài Đặt 158
Phiên Bản Hiện Tại 0.1.6
Cập Nhật Lần Cuối 2014-06-24
Ngày Phát Hành 2014-06-24
Đánh Giá 2.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Heavy Code
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kenstone/MediumWordCount
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}