Word Counter

Displays word count in the extensions toolbar.

Word Counter là gì?

Word Counter là một tiện ích mở rộng Chrome được phát triển bởi chriham3, và tính năng chính của nó là "Displays word count in the extensions toolbar.".

Ả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 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

                        Simple word counting extension. Simply select the text you wish to count, and the word count will appear on the icon at the extensions bar in the top right corner.                    

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

Tên Word Counter Word Counter
ID ipmlaaleafabnehpmokomegjjodbmoik
URL Chính Thức https://chromewebstore.google.com/detail/word-counter/ipmlaaleafabnehpmokomegjjodbmoik
Mô tả Displays word count in the extensions toolbar.
Kích Thước Tệp 9.84 KB
Số Lần Cài Đặt 411
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2017-12-05
Ngày Phát Hành 2017-12-04
Đánh Giá 4.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển chriham3
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Counter",
    "description": "Displays word count in the extensions toolbar.",
    "version": "0.2",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "32": "icon32.png",
        "48": "icon32.png",
        "128": "icon32.png"
    },
    "browser_action": {
        "default_icon": "icon32.png",
        "default_title": "Word Counter",
        "default_popup": "instructions.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "checker.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "wordcounter.js"
        ]
    }
}