Word Count

Counts the words in the document selection and text entry.

Word Count là gì?

Word Count là một tiện ích mở rộng Chrome được phát triển bởi shawn.hoover, và tính năng chính của nó là "Counts the words in the document selection and text entry.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng 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

                        Counts the words in the document selection and text entry. The count is displayed in an icon in the location bar. Use this to track word counts as you type or if you're curious how many words are in part of a web page.                    

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

Tên Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
URL Chính Thức https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Mô tả Counts the words in the document selection and text entry.
Kích Thước Tệp 9.76 KB
Số Lần Cài Đặt 195
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2015-07-30
Ngày Phát Hành 2015-07-30
Đánh Giá 3.14/5 Tổng số 7 Đánh Giá
Nhà Phát Triển shawn.hoover
Loại Thanh Toán free
Trang Web Mở Rộng https://bitbucket.org/shoover/word-count-ext
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "Counts the words in the document selection and text entry.",
    "icons": {
        "64": "logo64.png",
        "128": "logo128.png"
    },
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_title": "Word Count"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}