Word Counter

Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.

Word Counterคืออะไร?

Word Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mileswiesenthal และคุณลักษณะหลักของมันคือ "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word."

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

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

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

                        Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.                    

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

ชื่อ Word Counter Word Counter
ID genbfnkneekjmppgniacjffdphjgadpd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd
คำอธิบาย Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
ขนาดไฟล์ 359 KB
จำนวนการติดตั้ง 19
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-08-07
วันที่เผยแพร่ 2017-08-07
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา mileswiesenthal
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Counter",
    "short_name": "PM",
    "description": "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Word Counter"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "googleDocsUtil.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}