Word Counter

Displays word count in the extensions toolbar.

ما هو Word Counter؟

Word Counter هو إضافة Chrome تم تطويرها بواسطة chriham3، والميزة الرئيسية لها هي "Displays word count in the extensions toolbar.".

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

screenshot

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

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

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

                        Simple word counting extension. Simply select the text you wish to count, and the word count will appear on the icon at the extensions bar in the top right corner.                    

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

الاسم Word Counter Word Counter
ID ipmlaaleafabnehpmokomegjjodbmoik
عنوان URL الرسمي https://chromewebstore.google.com/detail/word-counter/ipmlaaleafabnehpmokomegjjodbmoik
الوصف Displays word count in the extensions toolbar.
حجم الملف 9.84 KB
عدد التثبيتات 411
النسخة الحالية 0.2
آخر تحديث 2017-12-05
تاريخ النشر 2017-12-04
تقييم 4.00/5 مجموع تقييمات 7
المطور chriham3
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Counter",
    "description": "Displays word count in the extensions toolbar.",
    "version": "0.2",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "32": "icon32.png",
        "48": "icon32.png",
        "128": "icon32.png"
    },
    "browser_action": {
        "default_icon": "icon32.png",
        "default_title": "Word Counter",
        "default_popup": "instructions.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "checker.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "wordcounter.js"
        ]
    }
}