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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get auto suggestions in English or Spanish in Evernote or Dropbox Paper."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Easy Pen: Auto suggestions and auto complete एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}