Word Count on Webpage By Warp Vessel

A simple chrome extension that allows you to instantly see the word count on the current webpage.

ما هو Word Count on Webpage By Warp Vessel؟

Word Count on Webpage By Warp Vessel هو إضافة Chrome تم تطويرها بواسطة Warp Vessel Apps، والميزة الرئيسية لها هي "A simple chrome extension that allows you to instantly see the word count on the current webpage.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Word Count on Webpage By Warp Vessel

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

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

                        A simple chrome extension that allows you to instantly see the word count on the current webpage.                    

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

الاسم Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
عنوان URL الرسمي https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
الوصف A simple chrome extension that allows you to instantly see the word count on the current webpage.
حجم الملف 6.48 KB
عدد التثبيتات 321
النسخة الحالية 1.02
آخر تحديث 2019-05-30
تاريخ النشر 2019-05-24
تقييم 3.75/5 مجموع تقييمات 4
المطور Warp Vessel Apps
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count on Webpage By Warp Vessel",
    "version": "1.02",
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Word Count By Warp Vessel",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}