Count Words

Count the amount of words in your page!

Count Wordsคืออะไร?

Count Words เป็นส่วนขยายของ Chrome ที่พัฒนาโดย andinomedia.co และคุณลักษณะหลักของมันคือ "Count the amount of words in your page!"

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

screenshot

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

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

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

                        Count Words is a fun extension that will count how many times a word appears in the user's page.                    

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

ชื่อ Count Words Count Words
ID bcpckhlbhiofhkbjmjnfdgaalmgbgpoa
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/count-words/bcpckhlbhiofhkbjmjnfdgaalmgbgpoa
คำอธิบาย Count the amount of words in your page!
ขนาดไฟล์ 14.58 KB
จำนวนการติดตั้ง 1,649
เวอร์ชันปัจจุบัน 1
อัปเดตครั้งล่าสุด 2022-12-08
วันที่เผยแพร่ 2022-12-08
ผู้พัฒนา andinomedia.co
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://home.sdgebralefuki.info/
URL หน้าช่วยเหลือ https://home.sdgebralefuki.info/contact.html
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Count the amount of words in your page!",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Count Words",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Count Words",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}