Easy Pen: Auto suggestions and auto complete

Get auto suggestions in English or Spanish in Evernote or Dropbox Paper.

Easy Pen: Auto suggestions and auto complete란 무엇입니까?

Easy Pen: Auto suggestions and auto complete은(는) Solan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get auto suggestions in English or Spanish in Evernote or Dropbox Paper."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Easy Pen: Auto suggestions and auto complete 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Its provides auto-suggestion and auto-complete service while you write lengthy documents and/or notes. It works while you take notes in Evernote and/or writing documents in Dropbox Paper. It supports English (US/UK) and Spanish language.

It remembers which 'words' you type often and suggest you back at right time. It a life-saving when you sit and type lengthy documents and scribbling on your notes. Also, base on your choice it suggests you words from English or Spanish dictionary. It do take some time in learning your writing behavior, but once its set and learnt, it saves huge amount of your time.

Its a standalone chrome extension, do not bear any server. Thus, no data is collected

Now, existing bugs:
- Writing in between paragraphs and using the first word suggestion from suggestion box by pressing ENTER key, will create an additional line between cursor and next paragraph.                    

확장 프로그램 기본 정보

이름 Easy Pen: Auto suggestions and auto complete Easy Pen: Auto suggestions and auto complete
ID ogdgigafmglfomohcijjjopobmenabed
공식 URL https://chromewebstore.google.com/detail/easy-pen-auto-suggestions/ogdgigafmglfomohcijjjopobmenabed
설명 Get auto suggestions in English or Spanish in Evernote or Dropbox Paper.
파일 크기 592 KB
설치 횟수 667
현재 버전 0.0.1
최근 업데이트 2020-08-11
출시 날짜 2019-12-16
평점 5.00/5 총 1 개의 평점
개발자 Solan
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Easy Pen: Auto suggestions and auto complete",
    "description": "Get auto suggestions in English or Spanish in Evernote or Dropbox Paper.",
    "version": "0.0.1",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_title": "Easy Pen: Type and get auto suggestions on Evernote or Dropbox Paper",
        "default_popup": "src\/popup.html"
    },
    "background": {
        "scripts": [
            "src\/jquery-2.1.1.min.js",
            "src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/paper.dropbox.com\/*",
                "https:\/\/www.evernote.com\/*"
            ],
            "js": [
                "src\/jquery-2.1.1.min.js",
                "src\/content.js",
                "src\/caret.js",
                "src\/b.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "en-UK.json",
        "en-US.json",
        "es-ES.json"
    ]
}