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はUnknownによって開発されたChromeの拡張機能で、その主な機能は「Status bar display of word and page count in Google Docs.」です。
拡張機能のスクリーンショット
Word and Page Count for Google Docs拡張機能のCRXファイルをダウンロード
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" } |