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.」です。
拡張機能のスクリーンショット
Easy Pen: Auto suggestions and auto complete拡張機能のCRXファイルをダウンロード
Easy Pen: Auto suggestions and auto complete拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" ] } |