Wordcounter
Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.
Wordcounter란 무엇입니까?
Wordcounter은(는) Sahil Lavingia에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words."입니다.
확장 프로그램 스크린샷
Wordcounter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 } |