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
公式URL 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
Eメール [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"
            ]
        }
    ]
}