Word Count

Display the number of words and characters within highlight in contextMenu and bottom right

ما هو Word Count؟

Word Count هو إضافة Chrome تم تطويرها بواسطة Zeno، والميزة الرئيسية لها هي "Display the number of words and characters within highlight in contextMenu and bottom right".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Word Count

قم بتنزيل ملفات الامتداد Word Count بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Display the number of words and characters within highlight in context menu and bottom right

On highlight, show the word count and the number of characters immediately.

Settings to change to 
- dark count box 
- hide count box

Chrome extension word counter to easily count words & characters                    

معلومات أساسية عن التمديد

الاسم Word Count Word Count
ID inaklojbeljbfmkkpjfmjjgehckpeohf
عنوان URL الرسمي https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf
الوصف Display the number of words and characters within highlight in contextMenu and bottom right
حجم الملف 15.59 KB
عدد التثبيتات 53
النسخة الحالية 0.2
آخر تحديث 2022-06-09
تاريخ النشر 2022-06-09
المطور Zeno
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.buymeacoffee.com/WhyNotBeFrg
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Word Count",
    "version": "0.2",
    "description": "Display the number of words and characters within highlight in contextMenu and bottom right",
    "icons": {
        "16": "icons\/logo.png",
        "48": "icons\/logo.png",
        "128": "icons\/logo.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_title": "test",
        "default_popup": "key.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "test.js"
            ]
        }
    ]
}