count(text)

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

count(text)คืออะไร?

count(text) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Konstantin Kitmanov และคุณลักษณะหลักของมันคือ "Shows word and characters count and some other info on any selected text (context menu)."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย count(text)

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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": []
}