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文件
下載NJStar Chinese Website Convertor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | oljejbejachaajllbbjiamdkhipbbppk |
| 官方網址 | 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"
}
} | |