pdf-translate-replacer
Format the English text which is copied and pasted from pdf so that it can be easily translated.
Qu'est-ce que pdf-translate-replacer ?
pdf-translate-replacer est une extension Chrome développée par matsu_chara, et sa fonction principale est "Format the English text which is copied and pasted from pdf so that it can be easily translated.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension pdf-translate-replacer
Téléchargez les fichiers d'extension pdf-translate-replacer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
pdfをGoogle翻訳/DeepLにコピペした文章を読みやすい形式にフォーマットしてくれるchrome拡張 [使い方] 1. Google翻訳/DeepLの翻訳欄にpdfからコピーした文章をpaste 2. このchrome拡張のボタンを押す
Informations de Base sur l'Extension
Nom | pdf-translate-replacer |
ID | gedfomnobchkoigdahfeinhnjnkdfdok |
URL Officiel | https://chromewebstore.google.com/detail/pdf-translate-replacer/gedfomnobchkoigdahfeinhnjnkdfdok |
Description | Format the English text which is copied and pasted from pdf so that it can be easily translated. |
Taille du Fichier | 25.59 KB |
Nombre d'Installations | 445 |
Version Actuelle | 1.13.0 |
Dernière Mise à Jour | 2021-08-11 |
Date de Publication | 2019-12-18 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | matsu_chara |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |