MFP Recipes by FOODFASTFIT
Quickly search your MFP recipes
Hvad er MFP Recipes by FOODFASTFIT?
MFP Recipes by FOODFASTFIT er en Chrome-udvidelse udviklet af https://foodfastfit.com, og dens hovedfunktion er "Quickly search your MFP recipes".
Udvidelsesskærmbilleder
Download MFP Recipes by FOODFASTFIT-udvidelses-CRX-fil
Download MFP Recipes by FOODFASTFIT-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
MFP recipes are not searchable. This extension enables search for your MFP recipes. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | fpcgaacncglfohpfjcfidijnjnlmlhdd |
| Officiel URL | https://chromewebstore.google.com/detail/mfp-recipes-by-foodfastfi/fpcgaacncglfohpfjcfidijnjnlmlhdd |
| Beskrivelse | Quickly search your MFP recipes |
| Filstørrelse | 92.88 KB |
| Antal Installationer | 40 |
| Nuværende Version | 5 |
| Senest Opdateret | 2023-08-24 |
| Udgivelsesdato | 2022-10-18 |
| Udvikler | https://foodfastfit.com |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://myfitnesspal.foodfastfit.com |
| Hjælpeside-URL | https://www.suggestiondrop.com/community/foodfastfit |
| URL til Fortrolighedspolitik Side | https://foodfastfit.com/privacy |
| Understøttede Sprog | 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"
]
}
]
} | |