MFP Recipes by FOODFASTFIT
Quickly search your MFP recipes
What is MFP Recipes by FOODFASTFIT?
MFP Recipes by FOODFASTFIT is a Chrome extension developed by https://foodfastfit.com, and its main feature is "Quickly search your MFP recipes".
Extension Screenshots
Download MFP Recipes by FOODFASTFIT Extension CRX File
Download MFP Recipes by FOODFASTFIT extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
MFP recipes are not searchable. This extension enables search for your MFP recipes.
Extension Basic Information
Name | MFP Recipes by FOODFASTFIT |
ID | fpcgaacncglfohpfjcfidijnjnlmlhdd |
Official URL | https://chromewebstore.google.com/detail/mfp-recipes-by-foodfastfi/fpcgaacncglfohpfjcfidijnjnlmlhdd |
Description | Quickly search your MFP recipes |
File Size | 92.88 KB |
Installation Count | 40 |
Current Version | 5 |
Last Updated | 2023-08-24 |
Publish Date | 2022-10-18 |
Developer | https://foodfastfit.com |
[email protected] | |
Payment Type | free |
Extension Website | https://myfitnesspal.foodfastfit.com |
Help Page URL | https://www.suggestiondrop.com/community/foodfastfit |
Privacy Policy Page URL | https://foodfastfit.com/privacy |
Supported Languages | 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" ] } ] } |