Word Counter
A lite tool for counting words and characters via right-click menu.
Word Counter란 무엇입니까?
Word Counter은(는) Benni에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A lite tool for counting words and characters via right-click menu."입니다.
확장 프로그램 스크린샷
Word Counter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Word Counter is a simple extension that helps you get the number of words and characters in a text selection via context-menu. Simply select a text with the mouse, then right-click and select - Count words & characters - from the context menu. A popup will appear to inform you about the number of words in the selected text. Besides this number, it also informs you about average word length, number of total characters, number of special characters, and the longest word. This addon has no settings or options to adjust. Simply add it to your browser and start using it. It works on any web page as long as you can select a word or sentence. Please note that this addon does not have a toolbar icon. If you want to report bugs or have a feature request, please fill the bug report form on the addon's homepage (https://mybrowseraddon.com/word-counter.html).
확장 프로그램 기본 정보
이름 | Word Counter |
ID | jggclakocbglccfomoklndaiihjmlejk |
공식 URL | https://chromewebstore.google.com/detail/word-counter/jggclakocbglccfomoklndaiihjmlejk |
설명 | A lite tool for counting words and characters via right-click menu. |
파일 크기 | 23.82 KB |
설치 횟수 | 4,372 |
현재 버전 | 0.1.3 |
최근 업데이트 | 2023-10-31 |
출시 날짜 | 2018-01-14 |
평점 | 3.00/5 총 5 개의 평점 |
개발자 | Benni |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://mybrowseraddon.com/word-counter.html |
도움말 페이지 URL | https://mybrowseraddon.com/word-counter.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.3", "manifest_version": 3, "name": "Word Counter", "offline_enabled": true, "homepage_url": "https:\/\/mybrowseraddon.com\/word-counter.html", "description": "A lite tool for counting words and characters via right-click menu.", "background": { "service_worker": "background.js" }, "permissions": [ "storage", "activeTab", "scripting", "contextMenus" ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |