Interactive Charts by FOODFASTFIT

Explore your MFP nutrition data with interactive charts. This extension improves upon MFP charts.

Vad är Interactive Charts by FOODFASTFIT?

Interactive Charts by FOODFASTFIT är en Chrome-tillägg utvecklad av https://foodfastfit.com, och dess huvudfunktion är "Explore your MFP nutrition data with interactive charts. This extension improves upon MFP charts.".

Tilläggsskärmbilder

screenshot

Ladda ner Interactive Charts by FOODFASTFIT-förlängningens CRX-fil

Ladda ner Interactive Charts 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

                        Explore your MFP nutrition data with interactive charts. This extension improves upon MFP charts.                    

Grundläggande Information om Tillägg

Namn Interactive Charts by FOODFASTFIT Interactive Charts by FOODFASTFIT
ID amkolaphnpboccgiidldgjfihahlhlkb
Officiell webbadress https://chromewebstore.google.com/detail/interactive-charts-by-foo/amkolaphnpboccgiidldgjfihahlhlkb
Beskrivning Explore your MFP nutrition data with interactive charts. This extension improves upon MFP charts.
Filstorlek 92.44 KB
Antal Installationer 391
Aktuell Version 52
Senast Uppdaterad 2023-08-29
Publiceringsdatum 2020-11-11
Utvecklare https://foodfastfit.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://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",
    "manifest_version": 3,
    "name": "Interactive Charts by FOODFASTFIT",
    "version": "52",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.myfitnesspal.com\/reports*",
                "*:\/\/*.myfitnesspal.com\/*\/reports*"
            ],
            "exclude_matches": [
                "*:\/\/*.myfitnesspal.com\/reports\/printable_diary*",
                "*:\/\/*.myfitnesspal.com\/*\/reports\/printable_diary*"
            ],
            "js": [
                "main.js"
            ]
        },
        {
            "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": [
                "fff.js"
            ]
        }
    ],
    "icons": {
        "16": "foodfastfit16.png",
        "48": "foodfastfit48.png",
        "128": "foodfastfit128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "externally_connectable": {
        "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\/"
        ]
    },
    "host_permissions": [
        "https:\/\/www.myfitnesspal.com\/*"
    ],
    "permissions": [
        "storage",
        "webRequest"
    ]
}