Easy Character Counter
count string
Easy Character Counter란 무엇입니까?
Easy Character Counter은(는) https://macha795.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "count string"입니다.
확장 프로그램 스크린샷
Easy Character Counter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Count the number of characters in the selected text. This is a Chrome Extension that allows you to count the number of characters in the selected text. The number of characters is displayed in the upper right corner of the screen. Please use it to check the number of characters in an article or for proofreading.
확장 프로그램 기본 정보
이름 | Easy Character Counter |
ID | copafpdgkjbaoenpeogidcemgmgfflgb |
공식 URL | https://chromewebstore.google.com/detail/easy-character-counter/copafpdgkjbaoenpeogidcemgmgfflgb |
설명 | count string |
파일 크기 | 46.36 KB |
설치 횟수 | 25 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2022-06-28 |
출시 날짜 | 2022-06-11 |
개발자 | https://macha795.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.3", "manifest_version": 3, "default_locale": "en", "background": { "service_worker": "js\/background.js" }, "permissions": [ "contextMenus" ], "icons": { "64": "img\/icon_64.png", "128": "img\/icon_128.png", "512": "img\/icon_512.png" }, "content_scripts": [ { "all_frames": false, "css": [ "css\/contents.css" ], "js": [ "plugin\/jquery.min.js", "js\/contents.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle" } ], "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "web_accessible_resources": [ { "resources": [ "img\/close_w.svg" ], "matches": [ "https:\/\/*\/*" ] } ] } |