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.

Qu'est-ce que Reciplay ?

Reciplay est une extension Chrome développée par https://getreciplay.com, et sa fonction principale est "The best cookbook is the one curated by you. Reciplay makes that happen by allowing you to save recipes you find on the web.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Reciplay

Téléchargez les fichiers d'extension Reciplay au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Reciplay Reciplay
ID lgniekfeiencebkkiclfiaonjinflhca
URL Officiel https://chrome.google.com/webstore/detail/reciplay/lgniekfeiencebkkiclfiaonjinflhca
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.
Taille du Fichier 27.38 KB
Nombre d'Installations 47
Version Actuelle 1.0.2
Dernière Mise à Jour 2021-07-18
Date de Publication 2020-04-14
Développeur https://getreciplay.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://getreciplay.com/
URL de la Page d'Aide https://getreciplay.com/support
URL de la Page de Politique de Confidentialité https://getreciplay.com/privacy-policy
Langues Prises en Charge 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\/*"
        ]
    }
}