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" ] } ] } |