MFP Recipes by FOODFASTFIT

Quickly search your MFP recipes

Was ist MFP Recipes by FOODFASTFIT?

MFP Recipes by FOODFASTFIT ist eine Chrome-Erweiterung, die von https://foodfastfit.com entwickelt wurde, und ihr Hauptmerkmal ist "Quickly search your MFP recipes".

Erweiterungsscreenshots

screenshot
screenshot

MFP Recipes by FOODFASTFIT-Erweiterungs-CRX-Datei herunterladen

Laden Sie MFP Recipes by FOODFASTFIT-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        MFP recipes are not searchable. This extension enables search for your MFP recipes.                    

Grundlegende Informationen zur Erweiterung

Name MFP Recipes by FOODFASTFIT MFP Recipes by FOODFASTFIT
ID fpcgaacncglfohpfjcfidijnjnlmlhdd
Offizielle URL https://chromewebstore.google.com/detail/mfp-recipes-by-foodfastfi/fpcgaacncglfohpfjcfidijnjnlmlhdd
Beschreibung Quickly search your MFP recipes
Dateigröße 92.88 KB
Installationsanzahl 40
Aktuelle Version 5
Letztes Update 2023-08-24
Veröffentlichungsdatum 2022-10-18
Entwickler https://foodfastfit.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://myfitnesspal.foodfastfit.com
Hilfeseite URL https://www.suggestiondrop.com/community/foodfastfit
URL der Datenschutzrichtlinien-Seite https://foodfastfit.com/privacy
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MFP Recipes by FOODFASTFIT",
    "description": "Quickly search your MFP recipes",
    "version": "5",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "icon-16x16.png",
        "48": "icon-48x48.png",
        "128": "icon-128x128.png"
    },
    "action": [],
    "externally_connectable": {
        "matches": [
            "https:\/\/myfitnesspal.foodfastfit.com\/",
            "https:\/\/myfitnesspal.foodfastfit.com\/myfitnesspal-x-foodfastfit",
            "https:\/\/myfitnesspal.foodfastfit.com\/myfitnesspal-x-foodfastfit\/",
            "https:\/\/myfitnesspal.foodfastfit.com\/recipes",
            "https:\/\/myfitnesspal.foodfastfit.com\/recipes\/",
            "http:\/\/mfp.foodfastfit.com\/",
            "http:\/\/mfp.foodfastfit.com\/myfitnesspal-x-foodfastfit",
            "http:\/\/mfp.foodfastfit.com\/myfitnesspal-x-foodfastfit\/",
            "http:\/\/mfp.foodfastfit.com\/recipes",
            "http:\/\/mfp.foodfastfit.com\/recipes\/"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/myfitnesspal.foodfastfit.com\/",
                "https:\/\/myfitnesspal.foodfastfit.com\/myfitnesspal-x-foodfastfit",
                "https:\/\/myfitnesspal.foodfastfit.com\/myfitnesspal-x-foodfastfit\/",
                "http:\/\/mfp.foodfastfit.com\/",
                "http:\/\/mfp.foodfastfit.com\/myfitnesspal-x-foodfastfit",
                "http:\/\/mfp.foodfastfit.com\/myfitnesspal-x-foodfastfit\/"
            ],
            "js": [
                "content-script-foodfastfit.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.myfitnesspal.com\/recipe_parser*"
            ],
            "js": [
                "content-script-myfitnesspal.js"
            ]
        }
    ]
}