Count Words

Count the amount of words in your page!

ما هو Count Words؟

Count Words هو إضافة Chrome تم تطويرها بواسطة andinomedia.co، والميزة الرئيسية لها هي "Count the amount of words in your page!".

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

screenshot

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

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

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

                        Count Words is a fun extension that will count how many times a word appears in the user's page.                    

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

الاسم Count Words Count Words
ID bcpckhlbhiofhkbjmjnfdgaalmgbgpoa
عنوان URL الرسمي https://chrome.google.com/webstore/detail/count-words/bcpckhlbhiofhkbjmjnfdgaalmgbgpoa
الوصف Count the amount of words in your page!
حجم الملف 14.58 KB
عدد التثبيتات 1,649
النسخة الحالية 1
آخر تحديث 2022-12-08
تاريخ النشر 2022-12-08
المطور andinomedia.co
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://home.sdgebralefuki.info/
عنوان صفحة المساعدة https://home.sdgebralefuki.info/contact.html
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Count the amount of words in your page!",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Count Words",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Count Words",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}