Word Count Toolbar

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

什麼是Word Count Toolbar?

Word Count Toolbar是由Johannes開發的Chrome擴展程式,該擴展的主要功能是“Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Word Count Toolbar擴展crx文件

下載Word Count Toolbar擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Word Count Toolbar Word Count Toolbar
ID mbmhadmadlioegaemcblhbloheompkeb
官方網址 https://chromewebstore.google.com/detail/word-count-toolbar/mbmhadmadlioegaemcblhbloheompkeb
簡介 Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords
檔案大小 18.59 KB
安裝次數 202
目前版本 0.1
更新時間 2021-09-14
上架時間 2021-09-13
評分 5.00/5 共 4 次評分
開發者 Johannes
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    ]
}