AppendEN

Extension to send selected texts to Evernote

AppendENとは何ですか?

AppendENはhttp://devcafe.jp/blogによって開発されたChromeの拡張機能で、その主な機能は「Extension to send selected texts to Evernote」です。

拡張機能のスクリーンショット

screenshot

AppendEN拡張機能のCRXファイルをダウンロード

AppendEN拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 AppendEN AppendEN
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"
}