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 là gì?
Easy Pen: Auto suggestions and auto complete là một tiện ích mở rộng Chrome được phát triển bởi Solan, và tính năng chính của nó là "Get auto suggestions in English or Spanish in Evernote or Dropbox Paper.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Easy Pen: Auto suggestions and auto complete
Tải xuống các tệp mở rộng Easy Pen: Auto suggestions and auto complete dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Easy Pen: Auto suggestions and auto complete |
ID | ogdgigafmglfomohcijjjopobmenabed |
URL Chính Thức | https://chromewebstore.google.com/detail/easy-pen-auto-suggestions/ogdgigafmglfomohcijjjopobmenabed |
Mô tả | Get auto suggestions in English or Spanish in Evernote or Dropbox Paper. |
Kích Thước Tệp | 592 KB |
Số Lần Cài Đặt | 667 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2020-08-11 |
Ngày Phát Hành | 2019-12-16 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Solan |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |