WorkFlowy code formatter

Makes backtick wrapped text look like code! {openSource}

Wat is WorkFlowy code formatter?

WorkFlowy code formatter is een Chrome-extensie ontwikkeld door ryanpcmcquen, en de belangrijkste functie is "Makes backtick wrapped text look like code! {openSource}".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie WorkFlowy code formatter

Download WorkFlowy code formatter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Make backtick wrapped text look like code! {openSource}

An open source extension to make backtick wrapped text look like code in WorkFlowy.

Unlike 'WorkFlowy for coders', this solution is lightweight, pure JavaScript, and still allows editing text in all views.

Any text wrapped in 1 or 3 backticks will be rendered as code (inspired by Markdown syntax).

Use 1 backtick for inline code, and 3 backticks to wrap multi-line code. Note that the 3 backticks MUST be on their own line.

Note that extensions do not work inside of Chrome apps, so if you are using the WorkFlowy 'app', this extension will not be running. This is a limitation of Chrome apps and extensions.

Enjoy!

https://github.com/ryanpcmcquen/workflowyCodeFormatter                    

Basisinformatie over de Extensie

Naam WorkFlowy code formatter WorkFlowy code formatter
ID kglihipcanlbglgikjghocmbbbbkfemn
Officiële URL https://chromewebstore.google.com/detail/workflowy-code-formatter/kglihipcanlbglgikjghocmbbbbkfemn
Beschrijving Makes backtick wrapped text look like code! {openSource}
Bestandsgrootte 297 KB
Aantal Installaties 472
Huidige Versie 0.9.3
Laatst Bijgewerkt 2020-10-07
Publicatiedatum 2020-04-29
Beoordeling 4.81/5 Totaal 21 Beoordelingen
Ontwikkelaar ryanpcmcquen
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/ryanpcmcquen/workflowyCodeFormatter
Help Pagina-URL https://github.com/ryanpcmcquen/workflowyCodeFormatter
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WorkFlowy code formatter",
    "description": "Makes backtick wrapped text look like code! {openSource}",
    "version": "0.9.3",
    "icons": {
        "128": "wcf_icon.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/workflowy.com\/*"
            ],
            "js": [
                "assets\/codeFormatter\/codeFormatter.js",
                "workflowyCodeFormatter.js"
            ]
        }
    ]
}