Word Counter

Counting the amount of a given word in the current page

ما هو Word Counter؟

Word Counter هو إضافة Chrome تم تطويرها بواسطة chatjonsmedia، والميزة الرئيسية لها هي "Counting the amount of a given word in the current page".

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

screenshot

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

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

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

                        Word Counter is a fun extension that will let the user count how many words appear in a page.                    

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

الاسم Word Counter Word Counter
ID ledamfbeelplcjfjclabbckmglgkmhdf
عنوان URL الرسمي https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf
الوصف Counting the amount of a given word in the current page
حجم الملف 14.55 KB
عدد التثبيتات 2,959
النسخة الحالية 1
آخر تحديث 2022-12-05
تاريخ النشر 2022-12-05
المطور chatjonsmedia
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://home.ujhimselvepost.info/
عنوان صفحة المساعدة https://home.ujhimselvepost.info/contact.html
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Counting the amount of a given word in the current page",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Word Counter",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Word Counter",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}