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 |
| 电子邮箱 | [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"
]
} | |