Protein Tracker
Tracks a user's protein totals throughout the day.
Protein Trackerとは何ですか?
Protein Trackerはmarius.taoによって開発されたChromeの拡張機能で、その主な機能は「Tracks a user's protein totals throughout the day.」です。
拡張機能のスクリーンショット
Protein Tracker拡張機能のCRXファイルをダウンロード
Protein Tracker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| ID | mokghkeodcncdkpacijgefhfilognnkl |
| 公式URL | https://chromewebstore.google.com/detail/protein-tracker/mokghkeodcncdkpacijgefhfilognnkl |
| 説明 | Tracks a user's protein totals throughout the day. |
| ファイルサイズ | 2.99 MB |
| インストール数 | 32 |
| 現在のバージョン | 0.55 |
| 最終更新日 | 2018-04-20 |
| 公開日 | 2018-04-20 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | marius.tao |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://walkinprogress.github.io/WebPage_for_ProteinTracker/ |
| プライバシーポリシーページのURL | https://github.com/WalkInProgress/ProteinTracker-ChromeExtension/blob/master/LICENSE.md |
| 対応言語 | 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"
]
} | |