MFP Recipes by FOODFASTFIT

Quickly search your MFP recipes

Vad är MFP Recipes by FOODFASTFIT?

MFP Recipes by FOODFASTFIT är en Chrome-tillägg utvecklad av https://foodfastfit.com, och dess huvudfunktion är "Quickly search your MFP recipes".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner MFP Recipes by FOODFASTFIT-förlängningens CRX-fil

Ladda ner MFP Recipes by FOODFASTFIT-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn MFP Recipes by FOODFASTFIT MFP Recipes by FOODFASTFIT
ID fpcgaacncglfohpfjcfidijnjnlmlhdd
Officiell webbadress https://chromewebstore.google.com/detail/mfp-recipes-by-foodfastfi/fpcgaacncglfohpfjcfidijnjnlmlhdd
Beskrivning Quickly search your MFP recipes
Filstorlek 92.88 KB
Antal Installationer 40
Aktuell Version 5
Senast Uppdaterad 2023-08-24
Publiceringsdatum 2022-10-18
Utvecklare https://foodfastfit.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://myfitnesspal.foodfastfit.com
Hjälpsida URL https://www.suggestiondrop.com/community/foodfastfit
URL till Sekretesspolicy Sidan https://foodfastfit.com/privacy
Stödda Språk 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"
            ]
        }
    ]
}