LineBreakRemover for DeepL ContextMenu
An extension that allows you to select text and right-click to access DeepL with line breaks removed.
Что такое LineBreakRemover for DeepL ContextMenu?
LineBreakRemover for DeepL ContextMenu - это расширение Chrome, разработанное teahat_dev, и его основная функция - "An extension that allows you to select text and right-click to access DeepL with line breaks removed.".
Снимки экрана расширения
Скачать файл CRX расширения LineBreakRemover for DeepL ContextMenu
Скачайте файлы расширений LineBreakRemover for DeepL ContextMenu в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
If you select a text in a PDF and try to translate it with the application DeepL (deepl.com), it may contain unwanted line breaks.
By selecting the text and right-clicking and selecting this extension, you can remove the line breaks in the selected text and access the DeepL website. Основная информация о расширении
| Название | |
| ID | njddmnlbagjbfflgigchnigdeohkjnbh |
| Официальный URL | https://chromewebstore.google.com/detail/linebreakremover-for-deep/njddmnlbagjbfflgigchnigdeohkjnbh |
| Описание | An extension that allows you to select text and right-click to access DeepL with line breaks removed. |
| Размер файла | 9.37 KB |
| Количество установок | 992 |
| Текущая Версия | 1.0.1 |
| Последнее Обновление | 2021-05-16 |
| Дата публикации | 2021-05-10 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | teahat_dev |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "LineBreakRemover for DeepL ContextMenu",
"version": "1.0.1",
"permissions": [
"contextMenus",
"storage"
],
"description": "__MSG_appDesc__",
"default_locale": "en",
"icons": {
"128": "icon128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_popup": "options.html",
"run_at": "document_start"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
}
} | |