Word and Page Count for Google Docs

Status bar display of word and page count in Google Docs.

Word and Page Count for Google Docsคืออะไร?

Word and Page Count for Google Docs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Status bar display of word and page count in Google Docs."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Word and Page Count for Google Docs

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

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

                                            

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

ชื่อ Word and Page Count for Google Docs Word and Page Count for Google Docs
ID lplekocfhhdadellpmilcaobpmlkgdde
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/word-and-page-count-for-g/lplekocfhhdadellpmilcaobpmlkgdde
คำอธิบาย Status bar display of word and page count in Google Docs.
ขนาดไฟล์ 373 KB
จำนวนการติดตั้ง 605
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2017-01-17
วันที่เผยแพร่ 2017-01-16
คะแนน 3.83/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word and Page Count for Google Docs",
    "version": "1.3",
    "manifest_version": 2,
    "web_accessible_resources": [
        "statusbar.html"
    ],
    "description": "Status bar display of word and page count in Google Docs.",
    "background": {
        "page": "background.html"
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Ready to count words and pages in Google doc"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/document\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "options_page": "fancy-settings\/source\/index.html"
}