Word Count Toolbar

Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords

Word Count Toolbar là gì?

Word Count Toolbar là một tiện ích mở rộng Chrome được phát triển bởi Johannes, và tính năng chính của nó là "Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        Word Count Toolbar

Get text stats from any website everywhere! 

Word Count Toolbar is an extension for displaying text analytics on google searches and on any website you want. 

Simply type in your google query and the extension will inject display the text stats for every page. Use the right-click menu for displaying stats, on your current selected text, on any page.

- Word count
- Character count with/without spaces
- Sentence count
- Average Sentence length
- Paragraphs
- Headers
- Images
- Keywords                    

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

Tên Word Count Toolbar Word Count Toolbar
ID mbmhadmadlioegaemcblhbloheompkeb
URL Chính Thức https://chromewebstore.google.com/detail/word-count-toolbar/mbmhadmadlioegaemcblhbloheompkeb
Mô tả Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords
Kích Thước Tệp 18.59 KB
Số Lần Cài Đặt 202
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2021-09-14
Ngày Phát Hành 2021-09-13
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Johannes
Email [email protected]
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 Count Toolbar",
    "description": "Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords",
    "version": "0.1",
    "author": "Johannes",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Word Count Toolbar"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "https:\/\/www.google.com\/*",
        "contextMenus"
    ]
}