Karenina Multilingual AI Grammar Checker

Performs AI style & grammar correction for English, Spanish, French, German, Chinese, Japanese & more!

Karenina Multilingual AI Grammar Checker란 무엇입니까?

Karenina Multilingual AI Grammar Checker은(는) https://www.karenina.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Performs AI style & grammar correction for English, Spanish, French, German, Chinese, Japanese & more!"입니다.

확장 프로그램 스크린샷

screenshot

Karenina Multilingual AI Grammar Checker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Karenina IO extension performs AI style & grammar correction for English, Spanish, French, German, Chinese, Japanese & more!

Languages 
* English, Spanish, French, Chinese, German, Japanese
* Soon to be added: Arabic, Russian, Italian 

Hotkeys
* Alt+C: On any webpage copies selected text onto karenina.io and performs correction
* Alt+V: On karenina.io pastes the corrected text back into the original webpage
* You can click to toggle between the original and corrected version of each highlighted correction 

Performance 
* Our AI tries aggressively to make text standard and concise, making stylistic corrections far beyond basic spelling and grammar 
* You're responsible for editing the corrections and making sure it meets your standard 

About
* We're an AI startup founded by Stanford University alumni dedicated to breaking down barriers between languages and cultures
* Paul Shen, Wavelets LLC, [email protected]

2020 (c) Wavelets LLC                    

확장 프로그램 기본 정보

이름 Karenina Multilingual AI Grammar Checker Karenina Multilingual AI Grammar Checker
ID fkjahhehbehlijcehipnhpjhldcajban
공식 URL https://chrome.google.com/webstore/detail/karenina-multilingual-ai/fkjahhehbehlijcehipnhpjhldcajban
설명 Performs AI style & grammar correction for English, Spanish, French, German, Chinese, Japanese & more!
파일 크기 93.77 KB
설치 횟수 270
현재 버전 0.9
최근 업데이트 2020-05-19
출시 날짜 2020-05-19
개발자 https://www.karenina.io
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Karenina Multilingual AI Grammar Checker",
    "description": "Performs AI style & grammar correction for English, Spanish, French, German, Chinese, Japanese & more!",
    "version": "0.9",
    "permissions": [
        "activeTab",
        "clipboardRead",
        "clipboardWrite",
        "tabs"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "commands": {
        "select": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "On any webpage copies selected text onto karenina.io and performs correction "
        },
        "write": {
            "suggested_key": {
                "default": "Alt+V"
            },
            "description": "On karenina.io pastes the corrected text back into the original webpage "
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.karenina.io\/"
            ],
            "js": [
                "karenina.js",
                "js\/http_ajax.googleapis.com_ajax_libs_jquery_3.4.1_jquery.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "manifest_version": 2
}