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是由matsu_chara開發的Chrome擴展程式,該擴展的主要功能是“Format the English text which is copied and pasted from pdf so that it can be easily translated.”。
擴展截圖
下載pdf-translate-replacer擴展crx文件
下載pdf-translate-replacer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        pdfをGoogle翻訳/DeepLにコピペした文章を読みやすい形式にフォーマットしてくれるchrome拡張
[使い方]
1. Google翻訳/DeepLの翻訳欄にpdfからコピーした文章をpaste
2. このchrome拡張のボタンを押す                     擴展基本資訊
| 名稱 |   |  
| ID | gedfomnobchkoigdahfeinhnjnkdfdok | 
| 官方網址 | 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"
    ]
}  |  |