Word Count

Counts the words in the document selection and text entry.

ما هو Word Count؟

Word Count هو إضافة Chrome تم تطويرها بواسطة shawn.hoover، والميزة الرئيسية لها هي "Counts the words in the document selection and text entry.".

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

screenshot
screenshot

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

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

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

                        Counts the words in the document selection and text entry. The count is displayed in an icon in the location bar. Use this to track word counts as you type or if you're curious how many words are in part of a web page.                    

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

الاسم Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
عنوان URL الرسمي https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
الوصف Counts the words in the document selection and text entry.
حجم الملف 9.76 KB
عدد التثبيتات 195
النسخة الحالية 0.4
آخر تحديث 2015-07-30
تاريخ النشر 2015-07-30
تقييم 3.14/5 مجموع تقييمات 7
المطور shawn.hoover
نوع الدفع free
موقع الإضافة https://bitbucket.org/shoover/word-count-ext
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "Counts the words in the document selection and text entry.",
    "icons": {
        "64": "logo64.png",
        "128": "logo128.png"
    },
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_title": "Word Count"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}