NJStar Chinese Website Convertor
Automatically Convert Simplified Chinese Web Page to Traditional, or Convert Traditional Chinese Web Page to Simplified.
NJStar Chinese Website Convertor란 무엇입니까?
NJStar Chinese Website Convertor은(는) https://www.njstar.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically Convert Simplified Chinese Web Page to Traditional, or Convert Traditional Chinese Web Page to Simplified."입니다.
확장 프로그램 스크린샷
NJStar Chinese Website Convertor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Simplified Chinese <-> Traditional Chinese Website Converter Automatically convert a simplified Chinese webpage to traditional Chinese page, or convert a traditional Chinese webpage to simplified Chinese page. 中文网页繁简自动转换 - 中文網頁繁簡自動轉換 Developer Website: http://www.njstar.com
확장 프로그램 기본 정보
이름 | NJStar Chinese Website Convertor |
ID | oljejbejachaajllbbjiamdkhipbbppk |
공식 URL | https://chromewebstore.google.com/detail/njstar-chinese-website-co/oljejbejachaajllbbjiamdkhipbbppk |
설명 | Automatically Convert Simplified Chinese Web Page to Traditional, or Convert Traditional Chinese Web Page to Simplified. |
파일 크기 | 140 KB |
설치 횟수 | 2,093 |
현재 버전 | 5.0.0 |
최근 업데이트 | 2021-11-01 |
출시 날짜 | 2014-12-10 |
평점 | 3.88/5 총 17 개의 평점 |
개발자 | https://www.njstar.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.njstar.com/chromate/webstore.php |
도움말 페이지 URL | http://www.njstar.com/chromate/ |
개인정보 보호 정책 페이지 URL | https://www.njstar.com/cms/njstar-privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "NJStar Chinese Website Convertor", "short_name": "NJStar Convertor", "version": "5.0.0", "description": "Automatically Convert Simplified Chinese Web Page to Traditional, or Convert Traditional Chinese Web Page to Simplified.", "background": { "service_worker": "njxmain.o.js" }, "action": { "default_icon": "Chromate24.png", "default_name": "NJStar Convertor", "default_popup": "njxpopup.html" }, "content_scripts": [ { "all_frames": true, "js": [ "njxclient.o.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "permissions": [ "tabs", "storage", "scripting" ], "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ], "content_security_policy": { "worker-src": "self", "script-src": "self", "object-src": "self" }, "icons": { "16": "Chromate16.png", "24": "Chromate24.png", "32": "Chromate32.png", "48": "Chromate48.png", "64": "Chromate64.png", "128": "Chromate128.png", "256": "Chromate256.png" } } |