Wordcounter

Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.

Wordcounterคืออะไร?

Wordcounter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sahil Lavingia และคุณลักษณะหลักของมันคือ "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words."

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

screenshot

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

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

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

                        Wordcounter shows a real-time word count as you type in any Google Docs document. You can toggle it off and on by clicking on the icon in the top right corner of your browser.

It also adds milestone markers every 500 words. Motivating!                    

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

ชื่อ Wordcounter Wordcounter
ID lhggjeapfnagbjlklclkmlihhoandlib
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/wordcounter/lhggjeapfnagbjlklclkmlihhoandlib
คำอธิบาย Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.
ขนาดไฟล์ 45.97 KB
จำนวนการติดตั้ง 3,718
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2018-08-02
วันที่เผยแพร่ 2018-08-01
คะแนน 2.62/5 รวมทั้งหมด 37 คะแนน
ผู้พัฒนา Sahil Lavingia
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordcounter",
    "version": "1.3",
    "description": "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "name": "Click to toggle Wordcounter on or off"
    },
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 2
}