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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
도움말 페이지 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" } } } } |