Word and Page Count for Google Docs
Status bar display of word and page count in Google Docs.
ما هو Word and Page Count for Google Docs؟
Word and Page Count for Google Docs هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Status bar display of word and page count in Google Docs.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Word and Page Count for Google Docs
قم بتنزيل ملفات الامتداد Word and Page Count for Google Docs بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
معلومات أساسية عن التمديد
الاسم | Word and Page Count for Google Docs |
ID | lplekocfhhdadellpmilcaobpmlkgdde |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/word-and-page-count-for-g/lplekocfhhdadellpmilcaobpmlkgdde |
الوصف | Status bar display of word and page count in Google Docs. |
حجم الملف | 373 KB |
عدد التثبيتات | 605 |
النسخة الحالية | 1.3 |
آخر تحديث | 2017-01-17 |
تاريخ النشر | 2017-01-16 |
تقييم | 3.83/5 مجموع تقييمات 12 |
المطور | Unknown |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Word and Page Count for Google Docs", "version": "1.3", "manifest_version": 2, "web_accessible_resources": [ "statusbar.html" ], "description": "Status bar display of word and page count in Google Docs.", "background": { "page": "background.html" }, "page_action": { "default_icon": "icon.png", "default_title": "Ready to count words and pages in Google doc" }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/document\/*" ], "js": [ "main.js" ], "run_at": "document_idle" } ], "icons": { "48": "48.png", "128": "128.png" }, "options_page": "fancy-settings\/source\/index.html" } |