count(text)

Shows word and characters count and some other info on any selected text (context menu).

count(text)とは何ですか?

count(text)はKonstantin Kitmanovによって開発されたChromeの拡張機能で、その主な機能は「Shows word and characters count and some other info on any selected text (context menu).」です。

拡張機能のスクリーンショット

screenshot

count(text)拡張機能のCRXファイルをダウンロード

count(text)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Select any text and use context menu to show character, word count and other useful text statistics. Unlike other word count and text stats tools, it correctly counts not only Latin-based texts.
This extension is open-source software, feel free to contribute.                    

拡張機能の基本情報

名前 count(text) count(text)
ID hdecimbkbmbanpandpcljaifkdelncan
公式URL https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan
説明 Shows word and characters count and some other info on any selected text (context menu).
ファイルサイズ 10.71 KB
インストール数 261
現在のバージョン 2.0.2
最終更新日 2022-10-04
公開日 2016-07-31
評価 3.50/5 合計 6 レビュー
開発者 Konstantin Kitmanov
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/hogart/count-text-chrome-extension
対応言語 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "count(text)",
    "description": "Shows word and characters count and some other info on any selected text (context menu).",
    "version": "2.0.2",
    "permissions": [
        "contextMenus",
        "notifications"
    ],
    "background": {
        "service_worker": "bg.js",
        "type": "module"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "offline_enabled": true,
    "default_locale": "en",
    "content_scripts": []
}