WorkFlowy code formatter

Makes backtick wrapped text look like code! {openSource}

Qu'est-ce que WorkFlowy code formatter ?

WorkFlowy code formatter est une extension Chrome développée par ryanpcmcquen, et sa fonction principale est "Makes backtick wrapped text look like code! {openSource}".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension WorkFlowy code formatter

Téléchargez les fichiers d'extension WorkFlowy code formatter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom WorkFlowy code formatter WorkFlowy code formatter
ID kglihipcanlbglgikjghocmbbbbkfemn
URL Officiel https://chromewebstore.google.com/detail/workflowy-code-formatter/kglihipcanlbglgikjghocmbbbbkfemn
Description Makes backtick wrapped text look like code! {openSource}
Taille du Fichier 297 KB
Nombre d'Installations 472
Version Actuelle 0.9.3
Dernière Mise à Jour 2020-10-07
Date de Publication 2020-04-29
Évaluation 4.81/5 Total 21 Évaluations
Développeur ryanpcmcquen
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ryanpcmcquen/workflowyCodeFormatter
URL de la Page d'Aide https://github.com/ryanpcmcquen/workflowyCodeFormatter
Langues Prises en Charge 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"
            ]
        }
    ]
}