LineBreakRemover for DeepL ContextMenu
An extension that allows you to select text and right-click to access DeepL with line breaks removed.
Vad är LineBreakRemover for DeepL ContextMenu?
LineBreakRemover for DeepL ContextMenu är en Chrome-tillägg utvecklad av teahat_dev, och dess huvudfunktion är "An extension that allows you to select text and right-click to access DeepL with line breaks removed.".
Tilläggsskärmbilder
Ladda ner LineBreakRemover for DeepL ContextMenu-förlängningens CRX-fil
Ladda ner LineBreakRemover for DeepL ContextMenu-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | njddmnlbagjbfflgigchnigdeohkjnbh |
| Officiell webbadress | https://chromewebstore.google.com/detail/linebreakremover-for-deep/njddmnlbagjbfflgigchnigdeohkjnbh |
| Beskrivning | An extension that allows you to select text and right-click to access DeepL with line breaks removed. |
| Filstorlek | 9.37 KB |
| Antal Installationer | 992 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2021-05-16 |
| Publiceringsdatum | 2021-05-10 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | teahat_dev |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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
}
} | |