MealClip

Simplify and download recipes from the web.

MealClipคืออะไร?

MealClip เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Leo Bensman และคุณลักษณะหลักของมันคือ "Simplify and download recipes from the web."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MealClip

ดาวน์โหลดไฟล์ส่วนขยาย MealClip ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Searching for recipes online can be a harrowing process. Strange formatting, popup ads, and long introductions can get in the way of finding actual ingredients and instructions. 

MealClip wades through the nonsense for you, and provides a simple, consistent list of ingredients and instructions for easy viewing, downloading, and printing. Click the MealClip icon and a recipe will appear at the top of your screen.

Basic use:
Mealclip will automatically load a small button in the top right corner of any page that appears to contain a recipe. Clicking on this button will open your formatted recipe. This feature can be turned off in the extension options. Recipes can also be loaded by clicking on the extension next to your search bar.

Downloading and Printing:
To download a recipe, click the button labeled "save". To Print, click "print" and you will be able to print directly from the page. Make sure the recipe is formatted the way you want it before saving or printing.

Editing:
MealClip isn't perfect. If a recipe is not loaded correctly, you can click and edit any part of it manually before downloading.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ MealClip MealClip
ID pclgcppjlhbccgpgflbijnhekejnbjmb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mealclip/pclgcppjlhbccgpgflbijnhekejnbjmb
คำอธิบาย Simplify and download recipes from the web.
ขนาดไฟล์ 1.7 MB
จำนวนการติดตั้ง 664
เวอร์ชันปัจจุบัน 1.0.0.7
อัปเดตครั้งล่าสุด 2020-01-01
วันที่เผยแพร่ 2019-12-28
คะแนน 4.89/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Leo Bensman
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MealClip",
    "description": "Simplify and download recipes from the web.",
    "version": "1.0.0.7",
    "web_accessible_resources": [
        "*.png",
        "*.PNG"
    ],
    "options_page": "options.html",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/mealclip\/pclgcppjlhbccgpgflbijnhekejnbjmb",
    "icons": {
        "16": "icon.png"
    },
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/background.js",
                "js\/jquery.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/recipe.css"
            ]
        }
    ]
}