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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
Название | 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" } |