Celerity-AI Text Enhancer

Allows you to Improve and Speed up your writing with the help of AI

Celerity-AI Text Enhancer란 무엇입니까?

Celerity-AI Text Enhancer은(는) isflakisaak에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to Improve and Speed up your writing with the help of AI"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Celerity-AI Text Enhancer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Celerity-AI Text enhancer is a Chrome extension for writing. It allows you to select text and right-click and choose between different operations to speed up your writing.  

Examples of operations you can choose from:
•   Improve Text:  Gives back an improved version of your text
•   Spell Fix: Fixes all of the spelling misstates in the text
•  Continue text: continues the text where you left off 
•  Replace x with best Matching word:  Replaces the character x with the best fitting word ( can be very good for finding synonyms)  

Price: 9$/month
website for more info: https://celerity-ai.com

Each time a new operation is received, it gets automatically copied to your clipboard. You can do multiple operations at once, and you can also write and tab out while operations are loading.

Ctrl + Q  =Improve Text
Ctrl + Shift + S = Fix spelling mistakes
Ctrl + Shift + F = Find best fitting word for x

(Does not yet work inside of google docs)                    

확장 프로그램 기본 정보

이름 Celerity-AI Text Enhancer Celerity-AI Text Enhancer
ID mclglhhdcddjoepaloaednfmaceoinpk
공식 URL https://chromewebstore.google.com/detail/celerity-ai-text-enhancer/mclglhhdcddjoepaloaednfmaceoinpk
설명 Allows you to Improve and Speed up your writing with the help of AI
파일 크기 173 KB
설치 횟수 25
현재 버전 0.0.0.5
최근 업데이트 2023-06-15
출시 날짜 2023-06-08
개발자 isflakisaak
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://celerity-ai.com
개인정보 보호 정책 페이지 URL https://celerity-ai.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Celerity-AI Text Enhancer",
    "description": "Allows you to Improve and Speed up your writing with the help of AI",
    "version": "0.0.0.5",
    "action": {
        "default_popup": "popup.html",
        "default_title": "Celerity-AI Text Enhancer",
        "default_icon": "Celerity-AI Roboto Text with leopard on top 128x128 Transarent.png"
    },
    "permissions": [
        "contextMenus",
        "clipboardWrite",
        "storage",
        "alarms",
        "activeTab",
        "scripting"
    ],
    "icons": {
        "16": "Celerity-AI Roboto Text with leopard on top 128x128 Transarent.png",
        "48": "Celerity-AI Roboto Text with leopard on top 128x128 Transarent.png",
        "128": "Celerity-AI Roboto Text with leopard on top 128x128 Transarent.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "commands": {
        "improveText": {
            "suggested_key": {
                "default": "Ctrl+Q",
                "mac": "Command+Q"
            },
            "description": "Improve the selected text"
        },
        "spellFix": {
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            },
            "description": "Fix spelling in the selected text"
        },
        "synonym": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+F"
            },
            "description": "Replace a placeholder value 'x' with best matching word. (is good for finding synonyms)"
        },
        "customPrompt1": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "A customizable Prompt that you can decide the prefix of (start of)"
        }
    }
}