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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } |