Word Count Toolbar

Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords

Word Count Toolbarคืออะไร?

Word Count Toolbar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Johannes และคุณลักษณะหลักของมันคือ "Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Word Count Toolbar

Get text stats from any website everywhere! 

Word Count Toolbar is an extension for displaying text analytics on google searches and on any website you want. 

Simply type in your google query and the extension will inject display the text stats for every page. Use the right-click menu for displaying stats, on your current selected text, on any page.

- Word count
- Character count with/without spaces
- Sentence count
- Average Sentence length
- Paragraphs
- Headers
- Images
- Keywords                    

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

ชื่อ Word Count Toolbar Word Count Toolbar
ID mbmhadmadlioegaemcblhbloheompkeb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/word-count-toolbar/mbmhadmadlioegaemcblhbloheompkeb
คำอธิบาย Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords
ขนาดไฟล์ 18.59 KB
จำนวนการติดตั้ง 202
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2021-09-14
วันที่เผยแพร่ 2021-09-13
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Johannes
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Count Toolbar",
    "description": "Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords",
    "version": "0.1",
    "author": "Johannes",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Word Count Toolbar"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "https:\/\/www.google.com\/*",
        "contextMenus"
    ]
}