DeepL Auto Converter

Enables easy DeepL translations

DeepL Auto Converter란 무엇입니까?

DeepL Auto Converter은(는) tak215에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables easy DeepL translations"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

DeepL Auto Converter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Translates foreign text using DeepL. Open sourced at https://github.com/tsuz/deepl-auto-converter                    

확장 프로그램 기본 정보

이름 DeepL Auto Converter DeepL Auto Converter
ID cpgdklpngibppeidaahbnbienjkiojel
공식 URL https://chromewebstore.google.com/detail/deepl-auto-converter/cpgdklpngibppeidaahbnbienjkiojel
설명 Enables easy DeepL translations
파일 크기 88.84 KB
설치 횟수 12
현재 버전 1.0.0
최근 업데이트 2021-10-26
출시 날짜 2021-10-25
개발자 tak215
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tsuz/deepl-auto-converter
도움말 페이지 URL https://github.com/tsuz/deepl-auto-converter#support
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DeepL Auto Converter",
    "description": "Enables easy DeepL translations",
    "version": "1.0.0",
    "browser_action": {
        "default_icon": "icon-16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/backgroundPage.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ]
}