WorkFlowy Plus

Get most out of WorkFlowy

Co je WorkFlowy Plus?

WorkFlowy Plus je rozšíření Chrome vyvinuté https://wasimdev.blogspot.com, a jeho hlavní funkcí je „Get most out of WorkFlowy“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření WorkFlowy Plus

Stáhněte si soubory rozšíření WorkFlowy Plus ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název WorkFlowy Plus WorkFlowy Plus
ID mabckbaobddmnafhfkaciemiimfmifhh
Oficiální URL https://chromewebstore.google.com/detail/workflowy-plus/mabckbaobddmnafhfkaciemiimfmifhh
Popis Get most out of WorkFlowy
Velikost souboru 70.27 KB
Počet instalací 432
Aktuální Verze 1.2.0
Poslední Aktualizace 2020-07-20
Datum Vydání 2020-03-24
Hodnocení 4.67/5 Celkem 3 Hodnocení
Vývojář https://wasimdev.blogspot.com
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}