Recipenote

Store a recipe from recipe sites to Evernote in pretty format

什麼是Recipenote?

Recipenote是由andymatsubara開發的Chrome擴展程式,該擴展的主要功能是“Store a recipe from recipe sites to Evernote in pretty format”。

擴展截圖

screenshot
screenshot

下載Recipenote擴展crx文件

下載Recipenote擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension stores pretty formatted recipes from recipe sites to Evernote. Currently supports food.com and allrecipes.com for English recipes. And I will support more sites.

To use it is simple. Right click in the recipe page and click "recipe to Evernote". Then a popup shows the title, main photo, suggested notebook, and suggested tags. Click OK, and it's done.

You can change colors and page width in the options page. narrowing width will be good for browsing in small devices like iPhone.                    

擴展基本資訊

名稱 Recipenote Recipenote
ID odldbjilfmgamgdilnpeobiechnaepal
官方網址 https://chrome.google.com/webstore/detail/recipenote/odldbjilfmgamgdilnpeobiechnaepal
簡介 Store a recipe from recipe sites to Evernote in pretty format
檔案大小 206 KB
安裝次數 447
目前版本 0.300
更新時間 2017-08-02
上架時間 2017-08-02
評分 2.78/5 共 9 次評分
開發者 andymatsubara
付費類型 free
支援的語言 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDesc__",
    "version": "0.300",
    "options_page": "popup.html",
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/cookpad.com\/*",
                "*:\/\/recipe.rakuten.co.jp\/*",
                "*:\/\/www.tbs.co.jp\/hanamaru\/recipe\/*",
                "*:\/\/allabout.co.jp\/gm\/gc\/*",
                "*:\/\/www.ajinomoto.co.jp\/recipe\/*",
                "*:\/\/recipes.yahoo.co.jp\/*",
                "*:\/\/erecipe.woman.excite.co.jp\/*",
                "*:\/\/recipe.gnavi.co.jp\/recipe\/*",
                "*:\/\/www.bob-an.com\/*",
                "*:\/\/www.kikkoman.co.jp\/homecook\/*",
                "*:\/\/www.lettuceclub.net\/recipe\/*",
                "*:\/\/www.ntv.co.jp\/3min\/recipe\/*",
                "*:\/\/www.bh-recipe.jp\/recipe\/*",
                "*:\/\/www.jamieoliver.com\/recipes\/*",
                "*:\/\/www.foodnetwork.com\/*",
                "*:\/\/www.myrecipes.com\/*",
                "*:\/\/www.marthastewart.com\/*",
                "*:\/\/allrecipes.com\/recipe\/*",
                "*:\/\/*.food.com\/recipe\/*"
            ],
            "js": [
                "jquery-1.7.2.min.js",
                "content_script.js",
                "noteit.min.js",
                "jsrender.js",
                "sites_data.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "page": "background.html"
    },
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    },
    "web_accessible_resources": [
        "sandbox.html",
        "sandbox.js",
        "handlebars-1.0.0.beta.6.js",
        "jquery-1.7.2.min.js"
    ],
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/odldbjilfmgamgdilnpeobiechnaepal",
    "content_security_policy": "sandbox allow-scripts; script-src unsafe-eval",
    "manifest_version": 2,
    "default_locale": "en"
}