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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Format the English text which is copied and pasted from pdf so that it can be easily translated."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में pdf-translate-replacer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |