Nynorskoversetteren
Automatisk oversettelse fra bokmål til nynorsk. Oversett direkte i publiseringssystemet ditt eller last opp filer til oversettelse.
ما هو Nynorskoversetteren؟
Nynorskoversetteren هو إضافة Chrome تم تطويرها بواسطة Totaltekst dev، والميزة الرئيسية لها هي "Automatisk oversettelse fra bokmål til nynorsk. Oversett direkte i publiseringssystemet ditt eller last opp filer til oversettelse.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Nynorskoversetteren
قم بتنزيل ملفات الامتداد Nynorskoversetteren بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Translate selected text from Norwegian bokmål to nynorsk. FEATURES • Translate selected text to clipboard • Translate and replace selected text in editable fields • Translate text by typing into input field in this application's popup -------------------- Automatisk oversettelse fra bokmål til nynorsk. Oversett direkte i publiseringssystemet ditt eller last opp dokumenter til oversettelse. FUNKSJONER • Oversett markert tekst til utklippstavle • Oversett og erstatt markert tekst i input-felter • Oversett tekst du selv skriver/limer inn i programmets popup Version history v1.0.9: New logo and icons plus a larger canvas in popup v1.0.8: Fixed error messages when not allowed to edit templates v1.0.7: Changes to options page v1.0.6: New logo and icons v1.0.5: Fixed some issues when editing templates without phrases v1.0.4: Bugfix and new promo tile image v1.0.3: Add option to set config for omit phrases v1.0.2: We just added some icons to menu items v1.0.1: New UI, template support for translation settings v0.2.0: Better error reporting in file translations v0.1.9: Fixed bug in .vtt file translation v0.1.8: Paritially supporting .vtt files v0.1.7: We fixed some bugs when not logged in v0.1.6: Added .odt, .odp and .srt support v0.1.5: First release v0.1.4: Fixed iframe issues v0.1.3: Improved stability and speed v0.1.2: Changed text to be more informative. v0.1.1: Corrected product name and fixed typos. v0.1.0: Fixed bug in translation to clipboard. v0.0.6: Better styling, using preferences in file translator v0.0.5: Added preferences. v0.0.4: Added doc translate and JWT authentication v0.0.3: Better error handling in options page v0.0.2: Fixed error in options page to enable input / check of api key
معلومات أساسية عن التمديد
الاسم | Nynorskoversetteren |
ID | dkigclejofjgplpbnngddpafhmehjfia |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/nynorskoversetteren/dkigclejofjgplpbnngddpafhmehjfia |
الوصف | Automatisk oversettelse fra bokmål til nynorsk. Oversett direkte i publiseringssystemet ditt eller last opp filer til oversettelse. |
حجم الملف | 267 KB |
عدد التثبيتات | 352 |
النسخة الحالية | 1.0.9 |
آخر تحديث | 2023-09-08 |
تاريخ النشر | 2022-09-21 |
المطور | Totaltekst dev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.totaltekst.no/nynorskoversetteren |
عنوان صفحة المساعدة | https://www.totaltekst.no/nynorskoversetteren/support |
عنوان صفحة سياسة الخصوصية | https://www.totaltekst.no/personvernerklaering |
اللغات المدعومة | no |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Nynorskoversetteren", "description": "Automatisk oversettelse fra bokm\u00e5l til nynorsk. Oversett direkte i publiseringssystemet ditt eller last opp filer til oversettelse.", "manifest_version": 3, "version": "1.0.9", "permissions": [ "notifications", "storage", "activeTab", "contextMenus", "clipboardRead", "clipboardWrite" ], "background": { "service_worker": "service_worker.js" }, "options_page": "options.html", "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';" }, "web_accessible_resources": [ { "resources": [ "settings.js", "jquery-min.js" ], "matches": [ "*:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "all_frames": false, "js": [ "jquery-min.js", "content-script.js" ], "css": [ "styles.css" ] } ], "icons": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" }, "action": { "default_popup": "popup.html", "default_title": "Nynorskoversetteren", "default_icon": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" } }, "commands": { "run_ext": { "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" }, "description": "Oversett og erstatt" }, "_execute_action": { "suggested_key": { "windows": "Ctrl+Shift+Y", "mac": "Command+Shift+Y", "chromeos": "Ctrl+Shift+Y", "linux": "Ctrl+Shift+Y" } } } } |