Word Counter

Displays word count in the extensions toolbar.

Word Counterคืออะไร?

Word Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chriham3 และคุณลักษณะหลักของมันคือ "Displays word count in the extensions toolbar."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Word Counter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Simple word counting extension. Simply select the text you wish to count, and the word count will appear on the icon at the extensions bar in the top right corner.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Word Counter Word Counter
ID ipmlaaleafabnehpmokomegjjodbmoik
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/word-counter/ipmlaaleafabnehpmokomegjjodbmoik
คำอธิบาย Displays word count in the extensions toolbar.
ขนาดไฟล์ 9.84 KB
จำนวนการติดตั้ง 411
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2017-12-05
วันที่เผยแพร่ 2017-12-04
คะแนน 4.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา chriham3
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Counter",
    "description": "Displays word count in the extensions toolbar.",
    "version": "0.2",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "32": "icon32.png",
        "48": "icon32.png",
        "128": "icon32.png"
    },
    "browser_action": {
        "default_icon": "icon32.png",
        "default_title": "Word Counter",
        "default_popup": "instructions.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "checker.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "wordcounter.js"
        ]
    }
}