Nynorskoversetteren
Automatisk oversettelse fra bokmål til nynorsk. Oversett direkte i publiseringssystemet ditt eller last opp filer til oversettelse.
什么是Nynorskoversetteren?
Nynorskoversetteren是由Totaltekst dev开发的Chrome扩展程序,该扩展的主要功能是“Automatisk oversettelse fra bokmål til nynorsk. Oversett direkte i publiseringssystemet ditt eller last opp filer til oversettelse.”。
扩展截图
下载Nynorskoversetteren扩展crx文件
下载Nynorskoversetteren扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| 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 |
| 帮助页面URL | https://www.totaltekst.no/nynorskoversetteren/support |
| 隐私政策页面URL | 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"
}
}
}
} | |