Translate Scanner

This extension is made by Salure for AFAS translate purposes

Translate Scanner란 무엇입니까?

Translate Scanner은(는) Salure ICT에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension is made by Salure for AFAS translate purposes"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        The extension aims to simplify the translation process and improve its efficiency by seamlessly fetching text from the active tab's DOM, parsing it, and storing the translated text for later use. Through the utilization of activeTab, tabs, storage, and host permissions, your extension can access the necessary information from websites and present it in a user-friendly format, thus providing a smoother translation experience. Ultimately, the purpose of your extension is to enhance the translation process for users, enabling them to perform translations with ease and convenience.                    

확장 프로그램 기본 정보

이름 Translate Scanner Translate Scanner
ID jpacphhdikilnebipcihgigdcoagcpei
공식 URL https://chromewebstore.google.com/detail/translate-scanner/jpacphhdikilnebipcihgigdcoagcpei
설명 This extension is made by Salure for AFAS translate purposes
파일 크기 461 KB
설치 횟수 37
현재 버전 2.1.2
최근 업데이트 2023-07-18
출시 날짜 2023-03-19
평점 5.00/5 총 1 개의 평점
개발자 Salure ICT
이메일 [email protected]
결제 유형 free
지원되는 언어 nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Translate Scanner",
    "description": "This extension is made by Salure for AFAS translate purposes",
    "version": "2.1.2",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "action": {
        "default_icon": "icon.png",
        "default_popup": "index.html",
        "default_title": "Salure Translate"
    },
    "content_security_policy": []
}