Fitocracy Unit Converter
This extension converts workout entries in the Fitocracy feed to your preferred system of units.
什么是Fitocracy Unit Converter?
Fitocracy Unit Converter是由Applifting开发的Chrome扩展程序,该扩展的主要功能是“This extension converts workout entries in the Fitocracy feed to your preferred system of units.”。
扩展截图
下载Fitocracy Unit Converter扩展crx文件
下载Fitocracy Unit Converter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Do you want to cheer for your fellow fitocrats for how much they lift but you don't know how much is that 120 Kg barbell bench press in pounds? You don't have to do unit conversions in your head anymore. This extension converts all workout entries into unit system of your choice so you can easily decide if those props you are giving out are well deserved.
扩展基本信息
名称 | Fitocracy Unit Converter |
ID | ocapmdbdoikdiecnpibcgibbphioennm |
官方URL | https://chromewebstore.google.com/detail/fitocracy-unit-converter/ocapmdbdoikdiecnpibcgibbphioennm |
简介 | This extension converts workout entries in the Fitocracy feed to your preferred system of units. |
文件大小 | 127 KB |
安装次数 | 27 |
当前版本 | 1.0.1 |
更新时间 | 2014-05-20 |
上架时间 | 2014-05-20 |
评分 | 4.44/5 共9次评分 |
开发者 | Applifting |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fitocracy Unit Converter", "version": "1.0.1", "description": "This extension converts workout entries in the Fitocracy feed to your preferred system of units.", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "page_action": { "default_icon": "icon128.png", "default_title": "Fitocracy unit converter by Applifting.cz", "default_popup": "popup.html" }, "permissions": [ "https:\/\/www.fitocracy.com\/", "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.fitocracy.com\/*" ], "js": [ "mutation-summary.js", "jquery.js", "shared.js", "converter.js" ] } ] } |