Word Count

Counts the words in the document selection and text entry.

Word Countคืออะไร?

Word Count เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shawn.hoover และคุณลักษณะหลักของมันคือ "Counts the words in the document selection and text entry."

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

screenshot
screenshot

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

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

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

                        Counts the words in the document selection and text entry. The count is displayed in an icon in the location bar. Use this to track word counts as you type or if you're curious how many words are in part of a web page.                    

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

ชื่อ Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
คำอธิบาย Counts the words in the document selection and text entry.
ขนาดไฟล์ 9.76 KB
จำนวนการติดตั้ง 195
เวอร์ชันปัจจุบัน 0.4
อัปเดตครั้งล่าสุด 2015-07-30
วันที่เผยแพร่ 2015-07-30
คะแนน 3.14/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา shawn.hoover
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://bitbucket.org/shoover/word-count-ext
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "Counts the words in the document selection and text entry.",
    "icons": {
        "64": "logo64.png",
        "128": "logo128.png"
    },
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_title": "Word Count"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}