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"
    ]
}