Recipe Box

A set of tools to make recipes online better.

Recipe Box란 무엇입니까?

Recipe Box은(는) Recipe Box에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A set of tools to make recipes online better."입니다.

확장 프로그램 스크린샷

screenshot

Recipe Box 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Recipe websites are notorious for many reasons. Chefs, like you, are overwhelmed with ads and units of measurement that aren't familiar to your kitchen. We scroll and pull out converters to make these delicious dishes. Shouldn't it be easier? This is where Recipe Box comes in.

We're committed to changing your world with our lovely cooking extension to keep online recipes enjoyable and easy to navigate.

Features:
• Auto-scroll to the recipe card
• Bookmark recipes and sort alphabetically

Roadmap:
• Organize bookmarks by dish type
• Auto-convert to your preferred units
• Divide recipe by an amount
• Annotate recipes with your own notes

We love recipes and their amazing creators.  
Hit me up with your ideas and features you'd love to see.                    

확장 프로그램 기본 정보

이름 Recipe Box Recipe Box
ID lcfhmcjffbgobdkdhnmmglogcbfkccpc
공식 URL https://chromewebstore.google.com/detail/recipe-box/lcfhmcjffbgobdkdhnmmglogcbfkccpc
설명 A set of tools to make recipes online better.
파일 크기 61.44 KB
설치 횟수 141
현재 버전 0.3.0
최근 업데이트 2022-03-15
출시 날짜 2022-03-10
평점 5.00/5 총 3 개의 평점
개발자 Recipe Box
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://ryanmacdonald.ca/
도움말 페이지 URL https://ryanmacdonald.ca/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A set of tools to make recipes online better.",
    "version": "0.3.0",
    "manifest_version": 3,
    "name": "Recipe Box",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-48.png"
    },
    "permissions": [
        "bookmarks",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png",
                "icon-48.png",
                "icon-16.png"
            ],
            "matches": []
        }
    ]
}