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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
pdfをGoogle翻訳/DeepLにコピペした文章を読みやすい形式にフォーマットしてくれるchrome拡張 [使い方] 1. Google翻訳/DeepLの翻訳欄にpdfからコピーした文章をpaste 2. このchrome拡張のボタンを押す
확장 프로그램 기본 정보
이름 | 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" ] } |