AppendEN
Extension to send selected texts to Evernote
AppendEN란 무엇입니까?
AppendEN은(는) http://devcafe.jp/blog에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension to send selected texts to Evernote"입니다.
확장 프로그램 스크린샷
AppendEN 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
AppendEN は Chrome で選択したテキストを Evernote に追記するための Extension です。 英語のページを読んでいるときに、単語を次々とメモしていくために作成しました。 Chrome の拡張機能画面から呼び出せる設定画面で設定すると、Evernote にメモするのと同時に 英単語の意味も追記することができます。 また、指定したURLで英単語の意味を表示することもできます。 登録した単語は、iOSアプリ EverLearn で取り込んでテストすることができます。 https://itunes.apple.com/jp/app/everlearn-taipingu-ying-dan/id627983178?mt=8 不具合がありましたら是非お知らせください。 In English: AppendEN is an chrome extension to append text to your note on Evernote.
확장 프로그램 기본 정보
이름 | |
ID | cikgoajmopopbnagahfgmapmlfphcnnk |
공식 URL | https://chrome.google.com/webstore/detail/appenden/cikgoajmopopbnagahfgmapmlfphcnnk |
설명 | Extension to send selected texts to Evernote |
파일 크기 | 142 KB |
설치 횟수 | 76 |
현재 버전 | 0.1.7 |
최근 업데이트 | 2014-02-05 |
출시 날짜 | 2014-02-05 |
평점 | 4.00/5 총 1 개의 평점 |
개발자 | http://devcafe.jp/blog |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://devcafe.jp/blog/iphoneapp/append-to-evernote/ |
지원되는 언어 | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AppendEN", "version": "0.1.7", "description": "Extension to send selected texts to Evernote", "browser_action": { "default_icon": { "19": "images\/icon_19.png", "38": "images\/icon_38.png" }, "default_popup": "views\/popup.html" }, "background": { "scripts": [ "js\/background.js", "js\/popup.js" ], "persistent": false }, "permissions": [ "tabs", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "js\/content.js" ] } ], "icons": { "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "options_page": "views\/options.html" } |