Make Sentence for Translator

This extension helps to facilitate translation by attaching separate sentences together.

Make Sentence for Translatorคืออะไร?

Make Sentence for Translator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sns2831 และคุณลักษณะหลักของมันคือ "This extension helps to facilitate translation by attaching separate sentences together."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Make Sentence for Translator

ดาวน์โหลดไฟล์ส่วนขยาย Make Sentence for Translator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        PDF 문서(예 논문..)를 번역기로 번역하고자 할 때 줄바꿈으로 인한 오역이 발생합니다.
이를 해결하기 위해서는 끊어진 문장을 다시 이어주는 작업을 필요로 합니다.
본 확장 프로그램은 이러한 작업을 자동으로 수행해 줍니다.

지원 번역기 : 구글 번역기, 네이버 파파고

사용 방법 :  
사용방법은 수동과 자동 두가지로 이루어져 있습니다.

=수동=
구글 번역기, 혹은 네이버 파파고에 문장을 붙여넣은 뒤 Ctrl + q 를 눌러줍니다.

=자동=
구글 번역기, 혹은 네이터 파파고에 문장을 붙여넣은 뒤 오른쪽 상단의  아이콘을 눌러 스위치를 on 하시면 번역기에 문장을 붙여 넣자마자 자동으로 문장을 이을 수 있습니다.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Make Sentence for Translator Make Sentence for Translator
ID emlmmgcgnglgamlijmgmnlnkohbipkoi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/make-sentence-for-transla/emlmmgcgnglgamlijmgmnlnkohbipkoi
คำอธิบาย This extension helps to facilitate translation by attaching separate sentences together.
ขนาดไฟล์ 10.02 KB
จำนวนการติดตั้ง 658
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2020-10-29
วันที่เผยแพร่ 2020-07-15
คะแนน 5.00/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา sns2831
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://bperhaps.tistory.com/
ภาษาที่รองรับ ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Make Sentence for Translator",
    "version": "1.0.2",
    "description": "This extension helps to facilitate translation by attaching separate sentences together.",
    "homepage_url": "https:\/\/bperhaps.tistory.com\/",
    "manifest_version": 2,
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        }
    },
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            ".\/js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/papago.naver.com\/*",
                "https:\/\/translate.google.co.kr\/*",
                "https:\/\/translate.google.com\/*"
            ],
            "js": [
                ".\/js\/contentScripts\/reformer.js",
                ".\/js\/contentScripts\/hotkey.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ]
}