Smoothie: Type Faster on Any Website

Type faster with AI sentence predictions and custom text templates

Smoothie: Type Faster on Any Website란 무엇입니까?

Smoothie: Type Faster on Any Website은(는) Alan Lu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Type faster with AI sentence predictions and custom text templates"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Smoothie: Type Faster on Any Website 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Smoothie is a writing assistant that helps you type faster on any website. It's like Gmail's Smart Compose feature, but works on any website. It is super simple to use, just type as you do normally, then use the paste shortcut (command + v for Mac and control + v for Windows) to insert auto-complete suggestions.

FEATURES
- Word prediction: help you type long words faster
- Sentence prediction: predict what you are about to type, auto-complete with keyboard shortcuts
- Define repetitive pieces of text as templates, insert with keyboard shortcuts

KEYBOARD SHORTCUTS
- Insert prediction: command + v (for Mac) OR control + v (for Windows)
- Navigate across predictions: up / down OR - / +
- Select part of a prediction: left / right OR [ / ]
- Hide predictions, prevent above hotkeys: esc
- Enter text templates: double tab control key
- Turn Smoothie on/off: ctrl + space

FAQ: https://smoothie.unicornplatform.page/#faq-02-362421                    

확장 프로그램 기본 정보

이름 Smoothie: Type Faster on Any Website Smoothie: Type Faster on Any Website
ID ogogkhoeobejfcakanfjfompbmebedfi
공식 URL https://chromewebstore.google.com/detail/smoothie-type-faster-on-a/ogogkhoeobejfcakanfjfompbmebedfi
설명 Type faster with AI sentence predictions and custom text templates
파일 크기 662 KB
설치 횟수 516
현재 버전 0.2.1
최근 업데이트 2021-12-06
출시 날짜 2020-06-19
평점 4.20/5 총 5 개의 평점
개발자 Alan Lu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://smoothie.unicornplatform.page/
도움말 페이지 URL https://smoothie.unicornplatform.page/#faq-02-362421
개인정보 보호 정책 페이지 URL https://www.gethappydog.com/privacy-policy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smoothie: Type Faster on Any Website",
    "description": "Type faster with AI sentence predictions and custom text templates",
    "version": "0.2.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "content_scripts\/smoothie-modal.css",
                "content_scripts\/editor.css",
                "content_scripts\/tutorial.css",
                "content_scripts\/enableSmoothie.css",
                "content_scripts\/tips.css",
                "content_scripts\/onboarding.css"
            ],
            "js": [
                "content_scripts\/utils.js",
                "content_scripts\/content.js",
                "content_scripts\/editor.js",
                "content_scripts\/tutorial.js",
                "content_scripts\/enableSmoothie.js",
                "content_scripts\/tips.js",
                "content_scripts\/textarea-caret-position.js",
                "content_scripts\/onboarding.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/cdn.jsdelivr.net\/npm\/[email protected]\/lib\/p5.min.js; object-src 'self'",
    "browser_action": {
        "default_icon": "icons\/round-icon-thick.png",
        "default_popup": "popup\/index.html",
        "default_title": "smoothie"
    },
    "permissions": [
        "tabs",
        "storage",
        "clipboardRead",
        "clipboardWrite"
    ],
    "icons": {
        "128": "icons\/icon.png",
        "16": "icons\/icon.png",
        "48": "icons\/icon.png"
    },
    "web_accessible_resources": [
        "Open_Sans\/*"
    ]
}