Wordcounter
Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.
ما هو Wordcounter؟
Wordcounter هو إضافة Chrome تم تطويرها بواسطة Sahil Lavingia، والميزة الرئيسية لها هي "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Wordcounter
قم بتنزيل ملفات الامتداد Wordcounter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Wordcounter shows a real-time word count as you type in any Google Docs document. You can toggle it off and on by clicking on the icon in the top right corner of your browser. It also adds milestone markers every 500 words. Motivating!
معلومات أساسية عن التمديد
الاسم | Wordcounter |
ID | lhggjeapfnagbjlklclkmlihhoandlib |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/wordcounter/lhggjeapfnagbjlklclkmlihhoandlib |
الوصف | Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words. |
حجم الملف | 45.97 KB |
عدد التثبيتات | 3,718 |
النسخة الحالية | 1.3 |
آخر تحديث | 2018-08-02 |
تاريخ النشر | 2018-08-01 |
تقييم | 2.62/5 مجموع تقييمات 37 |
المطور | Sahil Lavingia |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wordcounter", "version": "1.3", "description": "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.", "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/*" ], "css": [ "style.css" ], "js": [ "jquery-3.3.1.min.js", "content.js" ] } ], "browser_action": { "name": "Click to toggle Wordcounter on or off" }, "icons": { "128": "icon.png" }, "manifest_version": 2 } |