ScTranslator

Translate selected text with multiple sources, Webpage translating that have 3 display modes... An all-in-one translation extension.

ScTranslator란 무엇입니까?

ScTranslator은(는) sweetcola에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Translate selected text with multiple sources, Webpage translating that have 3 display modes... An all-in-one translation extension."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

ScTranslator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Translate with multiple translate sources at the same time / Various keyboard shortcuts / Translate history in single webpage / Separate translate window / Customize theme / Text preprocessing / Translation Collection / Webpage translating ...
Preview GIFs of related features:
https://github.com/chunibyocola/sc-translator-crx/discussions/19

* There are a variety of options in the options page for you to set up, so it is recommended to access the options page first after installing this extension to adjust a set of configurations that best suits you.

This extension provide a variety of ways to correspond the inline web translation, and you can enable of disable these according to your preference.

Support webpage translating, you can make it display original text and translation simultaneously.

Support custom translate source, you can add custom sources which built by yourself or others.

Support dark theme, you can also customize your own theme.

Support PDF viewer, with the PDF viewer, this extension can be used on PDF files.

Separate translate window will auto respond to the translate request when you click the "translate" item of context menus in the extension unavailable page.

If you want to use the URL suffix of ".cn" in some translate source like "Bing", you can check the "Use '.cn' in URL" option.

Notice: After installing or updating this extension, if you need to use this extension in existing webpage, please refresh the webpage first.

* Open Source
https://github.com/chunibyocola/sc-translator-crx                    

확장 프로그램 기본 정보

이름 ScTranslator ScTranslator
ID icfnljfpacimpcbpammmbclmhenimhfc
공식 URL https://chromewebstore.google.com/detail/sctranslator/icfnljfpacimpcbpammmbclmhenimhfc
설명 Translate selected text with multiple sources, Webpage translating that have 3 display modes... An all-in-one translation extension.
파일 크기 3.23 MB
설치 횟수 10,000
현재 버전 5.3.0
최근 업데이트 2023-12-21
출시 날짜 2020-04-24
평점 4.88/5 총 51 개의 평점
개발자 sweetcola
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/chunibyocola/sc-translator-crx
도움말 페이지 URL https://github.com/chunibyocola/sc-translator-crx/issues
지원되는 언어 en,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "ScTranslator",
    "name": "__MSG_extName__",
    "default_locale": "en",
    "version": "5.3.0",
    "description": "__MSG_extDescription__",
    "icons": {
        "16": "image\/icon-16.png",
        "48": "image\/icon-48.png",
        "128": "image\/icon-128.png"
    },
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "homepage_url": "https:\/\/github.com\/chunibyocola\/sc-translator-crx",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "commands": {
        "sc-translate": {
            "suggested_key": {
                "default": "Alt+Z"
            },
            "description": "__MSG_extTranslateCommandDescription__"
        },
        "sc-audio": {
            "suggested_key": {
                "default": "Alt+X"
            },
            "description": "__MSG_extListenCommandDescription__"
        },
        "sc-call-out": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "__MSG_extCallOutCommandDescription__"
        },
        "sc-open-separate-window": {
            "description": "__MSG_extOpenSeparateWindowDescription__"
        },
        "sc-close": {
            "description": "__MSG_extCloseCommandDescription__"
        },
        "sc-toggle-auto-insert-result": {
            "description": "__MSG_extToggleAutoInsertResultDescription__"
        },
        "sc-translate-current-page": {
            "description": "__MSG_extTranslateCurrentPageDescription__"
        },
        "sc-switch-wt-display-mode": {
            "description": "__MSG_extSwitchWTDisplayModeDescription__"
        },
        "sc-toggle-page-translation-state": {
            "description": "__MSG_extTogglePageTranslationStateDescription__"
        }
    },
    "optional_permissions": [
        "webNavigation"
    ],
    "permissions": [
        "storage",
        "contextMenus",
        "webRequest"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "\/static\/js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/pdf-vierer\/web\/viewer.html",
                "\/static\/css\/content.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}