MFP Recipes by FOODFASTFIT
Quickly search your MFP recipes
Wat is MFP Recipes by FOODFASTFIT?
MFP Recipes by FOODFASTFIT is een Chrome-extensie ontwikkeld door https://foodfastfit.com, en de belangrijkste functie is "Quickly search your MFP recipes".
Extensie Screenshots
Download het CRX-bestand van de extensie MFP Recipes by FOODFASTFIT
Download MFP Recipes by FOODFASTFIT-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
MFP recipes are not searchable. This extension enables search for your MFP recipes.
Basisinformatie over de Extensie
Naam | MFP Recipes by FOODFASTFIT |
ID | fpcgaacncglfohpfjcfidijnjnlmlhdd |
Officiële URL | https://chromewebstore.google.com/detail/mfp-recipes-by-foodfastfi/fpcgaacncglfohpfjcfidijnjnlmlhdd |
Beschrijving | Quickly search your MFP recipes |
Bestandsgrootte | 92.88 KB |
Aantal Installaties | 40 |
Huidige Versie | 5 |
Laatst Bijgewerkt | 2023-08-24 |
Publicatiedatum | 2022-10-18 |
Ontwikkelaar | https://foodfastfit.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://myfitnesspal.foodfastfit.com |
Help Pagina-URL | https://www.suggestiondrop.com/community/foodfastfit |
URL van de Privacybeleid Pagina | https://foodfastfit.com/privacy |
Ondersteunde Talen | 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" ] } ] } |