Word Count

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

Word Countคืออะไร?

Word Count เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zeno และคุณลักษณะหลักของมันคือ "Display the number of words and characters within highlight in contextMenu and bottom right"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Word Count

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