Reciplay

The best cookbook is the one curated by you. Reciplay makes that happen by allowing you to save recipes you find on the web.

什么是Reciplay?

Reciplay是由https://getreciplay.com开发的Chrome扩展程序,该扩展的主要功能是“The best cookbook is the one curated by you. Reciplay makes that happen by allowing you to save recipes you find on the web.”。

扩展截图

screenshot

下载Reciplay扩展crx文件

下载Reciplay扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The best cookbook is the one curated by you. Reciplay makes that happen by saving and organizing the great recipes that you find on the web. All the recipes you love are at your fingertips with Reciplay.

The extension works by grabbing key recipe information like ingredients, directions, servings, cook time, prep time, and images from the web page and saving all of that to your account where you can pull it back up at any time in an easy-to-read format that is perfect for busy kitchen work.                    

扩展基本信息

名称 Reciplay Reciplay
ID lgniekfeiencebkkiclfiaonjinflhca
官方URL https://chrome.google.com/webstore/detail/reciplay/lgniekfeiencebkkiclfiaonjinflhca
简介 The best cookbook is the one curated by you. Reciplay makes that happen by allowing you to save recipes you find on the web.
文件大小 27.38 KB
安装次数 47
当前版本 1.0.2
更新时间 2021-07-18
上架时间 2020-04-14
开发者 https://getreciplay.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://getreciplay.com/
帮助页面URL https://getreciplay.com/support
隐私政策页面URL https://getreciplay.com/privacy-policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reciplay",
    "description": "The best cookbook is the one curated by you. Reciplay makes that happen by allowing you to save recipes you find on the web.",
    "version": "1.0.2",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/getreciplay.com\/*",
        "https:\/\/resources.getreciplay.com\/*",
        "https:\/\/api2.getreciplay.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' https:\/\/api2.getreciplay.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Save to Reciplay"
    },
    "web_accessible_resources": [
        "content.css",
        "logo.png"
    ],
    "options_ui": {
        "page": "settings.html",
        "open_in_tab": true
    },
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/app.getreciplay.com\/*"
        ]
    }
}