Protein Tracker
Tracks a user's protein totals throughout the day.
Was ist Protein Tracker?
Protein Tracker ist eine Chrome-Erweiterung, die von marius.tao entwickelt wurde, und ihr Hauptmerkmal ist "Tracks a user's protein totals throughout the day.".
Erweiterungsscreenshots
Protein Tracker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Protein Tracker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
An options page where you can set your protein goal and personal information. A popup window where you can add your protein intake as you eat. It has a progress indicator that shows you how close you are to your goal as a percentage and a bar graph. The popup was designed for easy protein tracking. A context menu option to add proteins by simply selecting the protein quantity, highlighting it and clicking Add Protein.
Grundlegende Informationen zur Erweiterung
Name | Protein Tracker |
ID | mokghkeodcncdkpacijgefhfilognnkl |
Offizielle URL | https://chromewebstore.google.com/detail/protein-tracker/mokghkeodcncdkpacijgefhfilognnkl |
Beschreibung | Tracks a user's protein totals throughout the day. |
Dateigröße | 2.99 MB |
Installationsanzahl | 32 |
Aktuelle Version | 0.55 |
Letztes Update | 2018-04-20 |
Veröffentlichungsdatum | 2018-04-20 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | marius.tao |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://walkinprogress.github.io/WebPage_for_ProteinTracker/ |
URL der Datenschutzrichtlinien-Seite | https://github.com/WalkInProgress/ProteinTracker-ChromeExtension/blob/master/LICENSE.md |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Protein Tracker", "description": "Tracks a user's protein totals throughout the day.", "version": "0.55", "browser_action": { "default_icon": "img\/icon.png", "default_popup": "popup.html" }, "file_system_provider_capabilities": { "configurable": true, "multiple_mounts": true, "source": "network" }, "short_name": "PTrcker", "options_page": "options.html", "background": { "scripts": [ "js\/eventPage.js", "js\/progressbar.js" ], "persistent": false, "offline_enabled": true }, "permissions": [ "storage", "notifications", "contextMenus" ] } |