Word Count on Webpage By Warp Vessel

A simple chrome extension that allows you to instantly see the word count on the current webpage.

Word Count on Webpage By Warp Vesselคืออะไร?

Word Count on Webpage By Warp Vessel เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Warp Vessel Apps และคุณลักษณะหลักของมันคือ "A simple chrome extension that allows you to instantly see the word count on the current webpage."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Word Count on Webpage By Warp Vessel

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

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

                        A simple chrome extension that allows you to instantly see the word count on the current webpage.                    

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

ชื่อ Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
คำอธิบาย A simple chrome extension that allows you to instantly see the word count on the current webpage.
ขนาดไฟล์ 6.48 KB
จำนวนการติดตั้ง 321
เวอร์ชันปัจจุบัน 1.02
อัปเดตครั้งล่าสุด 2019-05-30
วันที่เผยแพร่ 2019-05-24
คะแนน 3.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Warp Vessel Apps
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count on Webpage By Warp Vessel",
    "version": "1.02",
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Word Count By Warp Vessel",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}