Fast Translator

Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.

Fast Translator란 무엇입니까?

Fast Translator은(는) Coderlife에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation, It also includes functions such as Analyze, polish, and summarize.                    

확장 프로그램 기본 정보

이름 Fast Translator Fast Translator
ID bjheadhaeajgaajiifmmjcljcdiecpng
공식 URL https://chromewebstore.google.com/detail/fast-translator/bjheadhaeajgaajiifmmjcljcdiecpng
설명 Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.
파일 크기 10.81 MB
설치 횟수 36
현재 버전 1.2.1
최근 업데이트 2023-06-04
출시 날짜 2023-04-18
평점 5.00/5 총 1 개의 평점
개발자 Coderlife
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://wenus.pixocial.com/h5/projects/5dfa0b7f333347b98384b97dd660ea77
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Fast Translator",
    "description": "Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.",
    "version": "1.2.1",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "options_page": "options.html",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "js\/content_script\/index.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background\/index.js"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "tabs",
        "activeTab"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "options.html"
            ],
            "matches": [
                ""
            ],
            "target": "window"
        }
    ],
    "host_permissions": [
        "https:\/\/*.openai.com\/",
        "https:\/\/*.openai.azure.com\/",
        "https:\/\/translation.googleapis.com\/",
        "https:\/\/athena.appwheel.com\/",
        "https:\/\/v2.lab.pixocial.com\/",
        "https:\/\/accounts.google.com\/"
    ]
}