WorkFlowy Estimator
Compute estimates right from Workflowy! {openSource}
WorkFlowy Estimatorคืออะไร?
WorkFlowy Estimator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jchoelt และคุณลักษณะหลักของมันคือ "Compute estimates right from Workflowy! {openSource}"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WorkFlowy Estimator
ดาวน์โหลดไฟล์ส่วนขยาย WorkFlowy Estimator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | jdpoiakogkkpgnjhnidiolgbhololnjg |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/workflowy-estimator/jdpoiakogkkpgnjhnidiolgbhololnjg |
คำอธิบาย | Compute estimates right from Workflowy! {openSource} |
ขนาดไฟล์ | 57.24 KB |
จำนวนการติดตั้ง | 90 |
เวอร์ชันปัจจุบัน | 0.3.1 |
อัปเดตครั้งล่าสุด | 2017-09-16 |
วันที่เผยแพร่ | 2017-09-16 |
คะแนน | 4.75/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | jchoelt |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" ] } ] } |