Word Counter - counts what you type

Shows a count of words and characters when you type in a text box on a website

Word Counter - counts what you typeคืออะไร?

Word Counter - counts what you type เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://oorjalabs.com และคุณลักษณะหลักของมันคือ "Shows a count of words and characters when you type in a text box on a website"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Word Counter - counts what you type

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

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

                        Shows a count of words and characters as you type.

Or select some text on a webpage to see the count of words, characters and estimated reading time.

Or tap on the extension button to open a window to write in. (Supports markdown formatting too!)

*Doesn't count in password or number input fields.

-----------------

Update 13 Feb 2020:

    New: App window to write longer text, with word count, word limits, markdown support, and more...


Update 27 Dec 2019:

    New: Show estimated reading time for text. Reading time is calculated based on a reading speed of 200 words per minute.


Update 13 Nov 2018:

    1. Removed permission for reading clipboard. Planned feature has been cancelled, so don't need this permission anymore.
    2. Made word count non-selectable, so it doesn't get included when doing select all (Ctrl/Cmd + A) on a webpage.

-------

Privacy Policy: https://c306.net/apps/privacy/word-counter/                    

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

ชื่อ Word Counter - counts what you type Word Counter - counts what you type
ID hjnjgdaeojdfoajjigipjmdnailbmfje
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/word-counter-counts-what/hjnjgdaeojdfoajjigipjmdnailbmfje
คำอธิบาย Shows a count of words and characters when you type in a text box on a website
ขนาดไฟล์ 163 KB
จำนวนการติดตั้ง 1,924
เวอร์ชันปัจจุบัน 2.2.0
อัปเดตครั้งล่าสุด 2022-05-24
วันที่เผยแพร่ 2020-02-17
คะแนน 4.42/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา https://oorjalabs.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://c306.net/apps
URL หน้าช่วยเหลือ https://docs.google.com/forms/d/e/1FAIpQLSf9_ku3EUkAOpHjfXGTr4qcWYUmaQpxYEj-WfkDdiwjryrGGQ/viewform?usp=pp_url&entry.1545185881=WordCounter+for+Chrome&entry.984758361=Suggest+new+feature+or+improvement&entry.1210432706=When+I've+got+nothing+else+to+do
URL หน้านโยบายความเป็นส่วนตัว https://c306.net/apps/privacy/all-chrome
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2022.0501.2.2",
    "version_name": "2.2.0",
    "name": "__MSG_appName__",
    "short_name": "__MSG_shortName__",
    "description": "__MSG_appDescription__",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjZnfLsjdqqB4aREOLeJn5savU2WRNHMobIf9D6eUkzuvXQNXAmnHfHCosu\/it4F6EcnUAi5l2itIkKdaWqdMsRCtFEocwe27w5LmGZkqeJ3olyYzEH+vlCETHHuBVILbuYiyxb06OuKlY88HNXvou+PUMBN9bu\/aWh\/xiCnYt6iP1H10+Z4f7ADAPIRJbhEbx7X1ZZ8UlXJXiOKXR8ysgrdA9GQmjSMA\/A70KP3VNwkoEP0R2sIZp8\/iROlZiQ2SwkGxjye5oCLMgoegEzWD2gY1tiVybtruc12BE4XCKcTVg\/D1EhbMQdynMkA1aDRT\/yICTTGybTqcAFw9\/iBiHQIDAQAB",
    "icons": {
        "16": "img\/wc16.png",
        "48": "img\/wc48.png",
        "128": "img\/wc128.png"
    },
    "default_locale": "en",
    "background": {
        "service_worker": "js\/bg.js"
    },
    "action": {
        "default_icon": {
            "16": "img\/wc16.png",
            "24": "img\/wc24.png",
            "32": "img\/wc32.png"
        },
        "default_title": "__MSG_appName__"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Period",
                "mac": "Command+Period",
                "chromeos": "Ctrl+Period",
                "linux": "Ctrl+Period"
            }
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "minimum_chrome_version": "93",
    "offline_enabled": true,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/ext\/jquery-3.3.1.min.js",
                "js\/constants.js",
                "js\/wc.js"
            ],
            "css": [
                "css\/wc.css"
            ],
            "all_frames": true
        }
    ]
}