Word Count

Display the number of words and characters within highlight in contextMenu and bottom right

什麼是Word Count?

Word Count是由Zeno開發的Chrome擴展程式,該擴展的主要功能是“Display the number of words and characters within highlight in contextMenu and bottom right”。

擴展截圖

screenshot
screenshot
screenshot

下載Word Count擴展crx文件

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

擴展使用說明

                        Display the number of words and characters within highlight in context menu and bottom right

On highlight, show the word count and the number of characters immediately.

Settings to change to 
- dark count box 
- hide count box

Chrome extension word counter to easily count words & characters                    

擴展基本資訊

名稱 Word Count Word Count
ID inaklojbeljbfmkkpjfmjjgehckpeohf
官方網址 https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf
簡介 Display the number of words and characters within highlight in contextMenu and bottom right
檔案大小 15.59 KB
安裝次數 53
目前版本 0.2
更新時間 2022-06-09
上架時間 2022-06-09
開發者 Zeno
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.buymeacoffee.com/WhyNotBeFrg
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Word Count",
    "version": "0.2",
    "description": "Display the number of words and characters within highlight in contextMenu and bottom right",
    "icons": {
        "16": "icons\/logo.png",
        "48": "icons\/logo.png",
        "128": "icons\/logo.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_title": "test",
        "default_popup": "key.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "test.js"
            ]
        }
    ]
}