WorkFlowy Plus
Get most out of WorkFlowy
什麼是WorkFlowy Plus?
WorkFlowy Plus是由https://wasimdev.blogspot.com開發的Chrome擴展程式,該擴展的主要功能是“Get most out of WorkFlowy”。
擴展截圖
下載WorkFlowy Plus擴展crx文件
下載WorkFlowy Plus擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Workflowy Plus will bring some exciting features for your favorite Workflowy application. Feature 1: Reminders Feature 2: Day Highlighter Feature 3: Encrypt Decryption your workflow items Feature 4: Support multiple fonts for workflowy Feature 5: Ability to change background colors Feature 6: Day Highlighter Made Optional Feature 7: Added word count option in Right Click Context Menu Feature 8: Ability to change main Text Color Feature 9: Support for Inline Images this script credit goes to Original Developer https://gist.github.com/Wizmann/605ff2a609348b6ec3a3#file-workflowy-with-image-js Feature 10: Quick add button Feature 11:Workflowy date format age calculator Feature 12: Workflowy date formate Date Incrementor/Decrementor Update Log: Feature 3: Encrypt Decryption your workflow items Select and right click in menu click workflowy plus-> encrypt then press control+V To decyrpt select encrypted text right click in menu click workflowy plus-> encrypt then press control+V DISCAILMER: I am not responsible for any damage to your data in any way. This is an experimental feature use it at your own risk. Major Updates 1. Format is simplied @r,message,date time this will help you to see all reminders by clicking @r 2. Removed limitation of removing zero in minutes remember last note "If you are going to set reminder for 19:03 please write 19:3 starting zeros must be ommited for now" this is fixed now you can use 19:03 that is more natural 3. Take out time for your health Daily. Added feature of Daily Reminders @rd,Walk,21:44 no need to add date 4. Always Pay your monthly Bill on Time. Added feature of Monthly Reminders @rm,Credit Card Bill,15 21:44 no need to specify month and year 5. Never Miss Any Birhday or Aniversary. Added feature of Yearly Reminder @ry,Wasim Birthday,15-04 21:54 no need to specify year. IMPORTANT NOTE: AFTER INSTALLATION YOU HAVE TO REFRESH PAGE OF WORKFLOWY. IN ORDER TO GET THIS EXTENSION WORKING. PLEASE DO KEEP WORKFLOWY OPEN IN TAB OTHERWISE IT WILL NOT WORK AT ALL Feature 1: Reminders It is simple as workflowy please follow syntax properly otherwise reminders will not work. Modify your item Meeting with David to @r,Meeting With David,26-03-2017 22:25 Current Supported format only dd-mm-yyyy hh:mm Now if time will arrive you will see message box automatically. Known Limitations. Your workflow account must be logged in and open in some tab for code to run.It does not have to be currently open tab code will work on other tabs as well. Again I repeat,Please follow syntax otherwise you can miss you important reminders Feature 2: Day Highlighter You may have used color coding using some extension but those are static. I have create a Day Highlighter. This will automatically color selected day. Like if you have list for different days. You can focus on current day as it color will automatically turn Red. You can see screenshot for this. For more details please visit http://wasimdev.blogspot.com/
擴展基本資訊
名稱 | WorkFlowy Plus |
ID | mabckbaobddmnafhfkaciemiimfmifhh |
官方網址 | https://chromewebstore.google.com/detail/workflowy-plus/mabckbaobddmnafhfkaciemiimfmifhh |
簡介 | Get most out of WorkFlowy |
檔案大小 | 70.27 KB |
安裝次數 | 432 |
目前版本 | 1.2.0 |
更新時間 | 2020-07-20 |
上架時間 | 2020-03-24 |
評分 | 4.67/5 共 3 次評分 |
開發者 | https://wasimdev.blogspot.com |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WorkFlowy Plus", "version": "1.2.0", "description": "Get most out of WorkFlowy", "browser_action": { "default_icon": "tick.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "newbullet.js", "age.js", "add.js" ], "background": { "scripts": [ "eventpage.js" ], "persistent": false }, "content_scripts": [ { "css": [ "style.css" ], "js": [ "jquery-1.8.3.min.js", "content.js" ], "matches": [ "*:\/\/*.workflowy.com\/*" ] } ], "permissions": [ "contextMenus", "storage" ], "icons": { "16": "ok16.png" } } |