pdf-translate-replacer

Format the English text which is copied and pasted from pdf so that it can be easily translated.

pdf-translate-replacerคืออะไร?

pdf-translate-replacer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย matsu_chara และคุณลักษณะหลักของมันคือ "Format the English text which is copied and pasted from pdf so that it can be easily translated."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย pdf-translate-replacer

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

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

                        pdfをGoogle翻訳/DeepLにコピペした文章を読みやすい形式にフォーマットしてくれるchrome拡張

[使い方]
1. Google翻訳/DeepLの翻訳欄にpdfからコピーした文章をpaste
2. このchrome拡張のボタンを押す                    

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

ชื่อ pdf-translate-replacer pdf-translate-replacer
ID gedfomnobchkoigdahfeinhnjnkdfdok
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pdf-translate-replacer/gedfomnobchkoigdahfeinhnjnkdfdok
คำอธิบาย Format the English text which is copied and pasted from pdf so that it can be easily translated.
ขนาดไฟล์ 25.59 KB
จำนวนการติดตั้ง 445
เวอร์ชันปัจจุบัน 1.13.0
อัปเดตครั้งล่าสุด 2021-08-11
วันที่เผยแพร่ 2019-12-18
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา matsu_chara
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "pdf-translate-replacer",
    "version": "1.13.0",
    "manifest_version": 2,
    "description": "Format the English text which is copied and pasted from pdf so that it can be easily translated.",
    "page_action": {
        "default_icon": {
            "32": "icons\/icon_32.png"
        },
        "default_title": "pdf-translate-replacer"
    },
    "icons": {
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/translate.google.com\/*",
                "https:\/\/translate.google.co.jp\/*",
                "https:\/\/www.deepl.com\/translator\/*"
            ],
            "js": [
                "content_scripts.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/translate.google.com\/*",
        "https:\/\/translate.google.co.jp\/*",
        "https:\/\/www.deepl.com\/translator"
    ]
}