Word Count Toolbar
Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords
ما هو Word Count Toolbar؟
Word Count Toolbar هو إضافة Chrome تم تطويرها بواسطة Johannes، والميزة الرئيسية لها هي "Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Word Count Toolbar
قم بتنزيل ملفات الامتداد Word Count Toolbar بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Word Count Toolbar Get text stats from any website everywhere! Word Count Toolbar is an extension for displaying text analytics on google searches and on any website you want. Simply type in your google query and the extension will inject display the text stats for every page. Use the right-click menu for displaying stats, on your current selected text, on any page. - Word count - Character count with/without spaces - Sentence count - Average Sentence length - Paragraphs - Headers - Images - Keywords
معلومات أساسية عن التمديد
الاسم | Word Count Toolbar |
ID | mbmhadmadlioegaemcblhbloheompkeb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/word-count-toolbar/mbmhadmadlioegaemcblhbloheompkeb |
الوصف | Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords |
حجم الملف | 18.59 KB |
عدد التثبيتات | 202 |
النسخة الحالية | 0.1 |
آخر تحديث | 2021-09-14 |
تاريخ النشر | 2021-09-13 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | Johannes |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Count Toolbar", "description": "Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords", "version": "0.1", "author": "Johannes", "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "css": [ "styles.css" ], "js": [ "content.js" ] } ], "browser_action": { "default_title": "Word Count Toolbar" }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "https:\/\/www.google.com\/*", "contextMenus" ] } |