WorkFlowy Plus
Get most out of WorkFlowy
O que é WorkFlowy Plus?
WorkFlowy Plus é uma extensão do Chrome desenvolvida por https://wasimdev.blogspot.com, e sua principal característica é "Get most out of WorkFlowy".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão WorkFlowy Plus
Baixe arquivos de extensão WorkFlowy Plus no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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/
Informações Básicas da Extensão
Nome | WorkFlowy Plus |
ID | mabckbaobddmnafhfkaciemiimfmifhh |
URL Oficial | https://chromewebstore.google.com/detail/workflowy-plus/mabckbaobddmnafhfkaciemiimfmifhh |
Descrição | Get most out of WorkFlowy |
Tamanho do Arquivo | 70.27 KB |
Contagem de Instalações | 432 |
Versão Atual | 1.2.0 |
Última Atualização | 2020-07-20 |
Data de Publicação | 2020-03-24 |
Classificação | 4.67/5 Total de 3 Avaliações |
Desenvolvedor | https://wasimdev.blogspot.com |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |