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 |
| 公式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 |
| Eメール | [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"
]
} | |