pdf-translate-replacer
Format the English text which is copied and pasted from pdf so that it can be easily translated.
pdf-translate-replacer là gì?
pdf-translate-replacer là một tiện ích mở rộng Chrome được phát triển bởi matsu_chara, và tính năng chính của nó là "Format the English text which is copied and pasted from pdf so that it can be easily translated.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng pdf-translate-replacer
Tải xuống các tệp mở rộng pdf-translate-replacer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
pdfをGoogle翻訳/DeepLにコピペした文章を読みやすい形式にフォーマットしてくれるchrome拡張 [使い方] 1. Google翻訳/DeepLの翻訳欄にpdfからコピーした文章をpaste 2. このchrome拡張のボタンを押す
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | pdf-translate-replacer |
ID | gedfomnobchkoigdahfeinhnjnkdfdok |
URL Chính Thức | https://chromewebstore.google.com/detail/pdf-translate-replacer/gedfomnobchkoigdahfeinhnjnkdfdok |
Mô tả | Format the English text which is copied and pasted from pdf so that it can be easily translated. |
Kích Thước Tệp | 25.59 KB |
Số Lần Cài Đặt | 445 |
Phiên Bản Hiện Tại | 1.13.0 |
Cập Nhật Lần Cuối | 2021-08-11 |
Ngày Phát Hành | 2019-12-18 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | matsu_chara |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |