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
官方網址 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
電子郵箱 [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": []
}