Word Counter
Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
ما هو Word Counter؟
Word Counter هو إضافة Chrome تم تطويرها بواسطة mileswiesenthal، والميزة الرئيسية لها هي "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.".
تحميل ملف CRX للإضافة Word Counter
قم بتنزيل ملفات الامتداد Word Counter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
معلومات أساسية عن التمديد
الاسم | |
ID | genbfnkneekjmppgniacjffdphjgadpd |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd |
الوصف | Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word. |
حجم الملف | 359 KB |
عدد التثبيتات | 19 |
النسخة الحالية | 1.0 |
آخر تحديث | 2017-08-07 |
تاريخ النشر | 2017-08-07 |
تقييم | 1.00/5 مجموع تقييمات 1 |
المطور | mileswiesenthal |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Counter", "short_name": "PM", "description": "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Word Counter" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "googleDocsUtil.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |