count(text)
Shows word and characters count and some other info on any selected text (context menu).
ما هو count(text)؟
count(text) هو إضافة Chrome تم تطويرها بواسطة Konstantin Kitmanov، والميزة الرئيسية لها هي "Shows word and characters count and some other info on any selected text (context menu).".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة count(text)
قم بتنزيل ملفات الامتداد count(text) بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Select any text and use context menu to show character, word count and other useful text statistics. Unlike other word count and text stats tools, it correctly counts not only Latin-based texts. This extension is open-source software, feel free to contribute.
معلومات أساسية عن التمديد
الاسم | count(text) |
ID | hdecimbkbmbanpandpcljaifkdelncan |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan |
الوصف | Shows word and characters count and some other info on any selected text (context menu). |
حجم الملف | 10.71 KB |
عدد التثبيتات | 261 |
النسخة الحالية | 2.0.2 |
آخر تحديث | 2022-10-04 |
تاريخ النشر | 2016-07-31 |
تقييم | 3.50/5 مجموع تقييمات 6 |
المطور | Konstantin Kitmanov |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/hogart/count-text-chrome-extension |
اللغات المدعومة | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "count(text)", "description": "Shows word and characters count and some other info on any selected text (context menu).", "version": "2.0.2", "permissions": [ "contextMenus", "notifications" ], "background": { "service_worker": "bg.js", "type": "module" }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "offline_enabled": true, "default_locale": "en", "content_scripts": [] } |