pdf-translate-replacer
Format the English text which is copied and pasted from pdf so that it can be easily translated.
Was ist pdf-translate-replacer?
pdf-translate-replacer ist eine Chrome-Erweiterung, die von matsu_chara entwickelt wurde, und ihr Hauptmerkmal ist "Format the English text which is copied and pasted from pdf so that it can be easily translated.".
Erweiterungsscreenshots
pdf-translate-replacer-Erweiterungs-CRX-Datei herunterladen
Laden Sie pdf-translate-replacer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
pdfをGoogle翻訳/DeepLにコピペした文章を読みやすい形式にフォーマットしてくれるchrome拡張 [使い方] 1. Google翻訳/DeepLの翻訳欄にpdfからコピーした文章をpaste 2. このchrome拡張のボタンを押す
Grundlegende Informationen zur Erweiterung
Name | pdf-translate-replacer |
ID | gedfomnobchkoigdahfeinhnjnkdfdok |
Offizielle URL | https://chromewebstore.google.com/detail/pdf-translate-replacer/gedfomnobchkoigdahfeinhnjnkdfdok |
Beschreibung | Format the English text which is copied and pasted from pdf so that it can be easily translated. |
Dateigröße | 25.59 KB |
Installationsanzahl | 445 |
Aktuelle Version | 1.13.0 |
Letztes Update | 2021-08-11 |
Veröffentlichungsdatum | 2019-12-18 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | matsu_chara |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |