Word Counter

Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.

Word Counter là gì?

Word Counter là một tiện ích mở rộng Chrome được phát triển bởi mileswiesenthal, và tính năng chính của nó là "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.".

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

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

                        Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.                    

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

Tên Word Counter Word Counter
ID genbfnkneekjmppgniacjffdphjgadpd
URL Chính Thức https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd
Mô tả Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
Kích Thước Tệp 359 KB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-08-07
Ngày Phát Hành 2017-08-07
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển mileswiesenthal
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Counter",
    "short_name": "PM",
    "description": "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Word Counter"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "googleDocsUtil.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}