WorkFlowy Estimator
Compute estimates right from Workflowy! {openSource}
¿Qué es WorkFlowy Estimator?
WorkFlowy Estimator es una extensión de Chrome desarrollada por jchoelt, y su función principal es "Compute estimates right from Workflowy! {openSource}".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión WorkFlowy Estimator
Descarga archivos de extensión WorkFlowy Estimator en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Want to compute estimates right from Workflowy? Or just sum up some stuff in a workflowy page? This is your tool. **How does it work?** Any line that starts with a number formatted like this will be consider a price (or price range): $100 $200..400 Then, for any line that contains a triple dollar sign ($$$), the plugin will show the sum of all price (or a range) based on all of its visible children. **Note on ranges:** If you sum a lot of ranges, say 10 items from $50..100, you will notice that the total range reported by the application isn't $750 +/ $250 but $750 +/- $100 This is because the estimator doesn't consider your $50..$100 range to be a "flat probability". In other terms, it's more likely to be around the center of the interval than it is to be at the limits. To achieve that, it creates a so-called "bell curve" centered at $75. It then returns an interval at 95% confidence which is smaller (and more accurate) that doing a simple sum of intervals.
Información Básica de la Extensión
Nombre | |
ID | jdpoiakogkkpgnjhnidiolgbhololnjg |
URL Oficial | https://chrome.google.com/webstore/detail/workflowy-estimator/jdpoiakogkkpgnjhnidiolgbhololnjg |
Descripción | Compute estimates right from Workflowy! {openSource} |
Tamaño del Archivo | 57.24 KB |
Cantidad de Instalaciones | 90 |
Versión Actual | 0.3.1 |
Última Actualización | 2017-09-16 |
Fecha de Publicación | 2017-09-16 |
Calificación | 4.75/5 Total de 4 Calificaciones |
Desarrollador | jchoelt |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WorkFlowy Estimator", "description": "Compute estimates right from Workflowy! {openSource}", "version": "0.3.1", "icons": { "128": "wfe_icon.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/workflowy.com\/*" ], "css": [], "js": [ "jquery.min.js", "debounce.js", "workflowy-estimator.js" ] } ] } |